Skip to content

Commit

Permalink
Update main menu items position
Browse files Browse the repository at this point in the history
  • Loading branch information
saltict committed Aug 6, 2024
1 parent fb47720 commit 076af96
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions packages/extension-koni-ui/src/components/Layout/base/Base.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,6 @@ const Component = ({ backgroundImages, backgroundStyle, children, className, hea
const { language } = useSelector((state) => state.settings);

const tabBarItems = useMemo((): Array<Omit<SwTabBarItem, 'onClick'> & { url: string }> => ([
{
icon: {
type: 'phosphor',
phosphorIcon: Wallet,
weight: 'fill'
},
label: t('Wallet'),
key: 'tokens',
url: '/home/tokens'
},
{
icon: {
type: 'customIcon',
Expand Down Expand Up @@ -95,6 +85,16 @@ const Component = ({ backgroundImages, backgroundStyle, children, className, hea
label: t('Airdrop'),
key: 'airdrop',
url: '/home/airdrop'
},
{
icon: {
type: 'phosphor',
phosphorIcon: Wallet,
weight: 'fill'
},
label: t('Wallet'),
key: 'tokens',
url: '/home/tokens'
}
// {
// icon: {
Expand Down

0 comments on commit 076af96

Please sign in to comment.