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 3ea117d commit bd54959Copy full SHA for bd54959
frontend/src/components/organisms/TopNavbar.tsx
@@ -17,7 +17,7 @@ export const TopNavbar = ({ networkId }: TopNavbarProps) => {
17
const { user } = useUserStore((state) => state);
18
19
if (!network) {
20
- redirect(`/${defaultNetworkId}/drive`);
+ redirect(`/${defaultNetworkId}/explorer/global`);
21
}
22
23
return (
@@ -28,7 +28,7 @@ export const TopNavbar = ({ networkId }: TopNavbarProps) => {
28
<NetworkDropdown
29
selected={network}
30
onChange={(value) => {
31
- window.location.assign(`/${value.id}/drive`);
+ window.location.assign(`/${value.id}/drive/global`);
32
}}
33
/>
34
{user && <ProfileDropdown />}
0 commit comments