Skip to content

Commit

Permalink
Fix issue with the navbar display
Browse files Browse the repository at this point in the history
  • Loading branch information
user committed Apr 4, 2024
1 parent abd29ac commit 9a0e6d8
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions web/app.fluidity.money/app/routes/$network/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,20 +178,19 @@ const NAVIGATION_MAP: {
icon: JSX.Element;
};
}[] = [
...airdropTab,
{
home: {
name: "dashboard",
path: (network: string) => `/${network}/dashboard/home`,
icon: <DashboardIcon />,
},
...airdropTab,
{
home: {
name: "dashboard",
path: (network: string) => `/${network}/dashboard/home`,
icon: <DashboardIcon />,
},
{
rewards: {
name: "rewards",
path: (network: string) => `/${network}/dashboard/rewards`,
icon: <Trophy />,
},
},
{
rewards: {
name: "rewards",
path: (network: string) => `/${network}/dashboard/rewards`,
icon: <Trophy />,
},
},
];
Expand Down

0 comments on commit 9a0e6d8

Please sign in to comment.