Skip to content

Commit

Permalink
fix(wallet-dashboard): sidebar icons (#4723)
Browse files Browse the repository at this point in the history
  • Loading branch information
evavirseda authored Jan 9, 2025
1 parent 2fcc992 commit 5ab6e52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/wallet-dashboard/lib/constants/routes.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import type { ProtectedRoute } from '../interfaces';
import { ProtectedRouteTitle } from '../enums';
import { Activity, Assets, Calendar, Home, Tokens, Vesting } from '@iota/ui-icons';
import { Activity, Assets, Calendar, Home, Stake, Vesting } from '@iota/ui-icons';

export const HOMEPAGE_ROUTE: ProtectedRoute = {
title: ProtectedRouteTitle.Home,
Expand All @@ -20,13 +20,13 @@ export const ASSETS_ROUTE: ProtectedRoute = {
export const STAKING_ROUTE: ProtectedRoute = {
title: ProtectedRouteTitle.Staking,
path: '/staking',
icon: Activity,
icon: Stake,
};

export const ACTIVITY_ROUTE: ProtectedRoute = {
title: ProtectedRouteTitle.Activity,
path: '/activity',
icon: Tokens,
icon: Activity,
};
export const MIGRATIONS_ROUTE: ProtectedRoute = {
title: ProtectedRouteTitle.Migrations,
Expand Down

0 comments on commit 5ab6e52

Please sign in to comment.