diff options
Diffstat (limited to 'src/App.tsx')
-rw-r--r-- | src/App.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.tsx b/src/App.tsx index 8d5ebb4..98f216c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -43,8 +43,8 @@ function App() { <Route path="/logout" element={ <Logout supabase={supabase} session={session} setSession={setSession} timeframe={timeframe} setTimeframe={setTimeframe} /> } /> - <Route path="/file/:filepath" element={ - <File supabase={supabase} session={session} setSession={setSession} timeframe={timeframe} setTimeframe={setTimeframe} /> + <Route path="/file/:fileID" element={ + <File supabase={supabase} session={session} setSession={setSession} /> } /> <Route path="*" element={<p>notfound</p>} /> </Routes> |