Skip to content

Commit

Permalink
fix: correct typo in workflows route and adjust account creation rout…
Browse files Browse the repository at this point in the history
…es for consistency
  • Loading branch information
hervedombya committed Dec 20, 2024
1 parent 0aabf37 commit a44b2f3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/react/Routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,23 +160,23 @@ function PrivateRoutes() {
path="/locations/:locationName/edit"
element={<LocationEditor />}
/>
<Route path="/worklows/*" element={<RedirectToAccount />} />
<Route path="/workflows/*" element={<RedirectToAccount />} />
<Route path="/buckets/*" element={<RedirectToAccount />} />
<Route
path={'/accounts/:accountName/create-bucket/*'}
path="/accounts/:accountName/create-bucket/*"
element={<BucketCreate />}
/>
<Route
path="/accounts/:accountName/buckets/*"
element={<DataBrowser />}
/>
<Route path="/accounts/:accountName/*" element={<AccountContent />} />
<Route path="/create-account/*" element={<AccountCreate />} />
<Route path="/create-dataservice/*" element={<EndpointCreate />} />
<Route path="/accounts/*" element={<Accounts />} />
<Route path="/create-account" element={<AccountCreate />} />
<Route path="/create-dataservice" element={<EndpointCreate />} />
<Route path="/dataservices/*" element={<Endpoints />} />
<Route path="/locations/*" element={<Locations />} />
<Route path="/veeam/configuration/*" element={<VeeamSteppers />} />
<Route path="/accounts/*" element={<Accounts />} />
<Route path="/" element={<Navigate to="/accounts" />} />
<Route path="*" element={<NoMatch />} />
</Routes>
Expand Down

0 comments on commit a44b2f3

Please sign in to comment.