We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d612e4 commit 601f1feCopy full SHA for 601f1fe
dtunes/src/App.jsx
@@ -9,12 +9,10 @@ function App() {
9
return (
10
<>
11
<Routes>
12
- <Route path='/playlists/new/*' element={<OtherViewsMain requestedPath='/playlists/new' />}/>
13
<Route path='/songs/new/*' element={<OtherViewsMain requestedPath='/songs/new' />}/>
14
<Route path='/playlists/:id/add-song' element={<OtherViewsMain requestedPath='/playlists/:id/add-song'/>}/>
15
<Route path='/playlists/*' element={<OtherViewsMain requestedPath='/playlists' />}/>
16
<Route path='/songs/*' element={<OtherViewsMain requestedPath='/songs' />}/>
17
- <Route path='/users/new' element={<OtherViewsMain requestedPath='/users/new'/>}/>
18
<Route path='*' element={<NormalWithContext/>} />
19
20
</Routes>
0 commit comments