File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -121,8 +121,12 @@ export const routes = createRoutesFromElements(
121
121
< Route path = "settings" handle = { { crumb : 'Settings' } } element = { < SettingsLayout /> } >
122
122
< Route index element = { < Navigate to = "profile" replace /> } />
123
123
< Route path = "profile" element = { < ProfilePage /> } handle = { { crumb : 'Profile' } } />
124
- < Route element = { < SSHKeysPage /> } loader = { SSHKeysPage . loader } >
125
- < Route path = "ssh-keys" handle = { { crumb : 'SSH Keys' } } element = { null } />
124
+ < Route
125
+ element = { < SSHKeysPage /> }
126
+ loader = { SSHKeysPage . loader }
127
+ handle = { { crumb : 'SSH Keys' } }
128
+ >
129
+ < Route path = "ssh-keys" element = { null } />
126
130
< Route
127
131
path = "ssh-keys-new"
128
132
element = { < CreateSSHKeySideModalForm /> }
@@ -496,7 +500,7 @@ export const routes = createRoutesFromElements(
496
500
path = "floating-ips/:floatingIp/edit"
497
501
element = { < EditFloatingIpSideModalForm /> }
498
502
loader = { EditFloatingIpSideModalForm . loader }
499
- handle = { { crumb : 'Edit Floating IP' } }
503
+ handle = { { crumb : 'Edit Floating IP' , titleOnly : true } }
500
504
/>
501
505
</ Route >
502
506
You can’t perform that action at this time.
0 commit comments