Skip to content

Commit

Permalink
Fix (I think) another react router splat route problem
Browse files Browse the repository at this point in the history
  • Loading branch information
bhollis committed Dec 8, 2024
1 parent 19605c9 commit a98fb94
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/app/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,7 @@ export default function App() {
<Route path="armory">
<Route path="*" element={<DefaultAccount />} />
</Route>
<Route path=":membershipId/:destinyVersion">
<Route path="*" element={<Destiny />} />
</Route>
<Route path=":membershipId/:destinyVersion/*" element={<Destiny />} />
<Route path="*" element={<DefaultAccount />} />
</>
)}
Expand Down

0 comments on commit a98fb94

Please sign in to comment.