Skip to content

Commit

Permalink
fix: set debio tips (#1753)
Browse files Browse the repository at this point in the history
fix: set debio tips
  • Loading branch information
rubenkristian authored and irmannmal committed Mar 9, 2023
1 parent 869e220 commit 264d80e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/Tip/Tip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import {
MyriadCircleIcon,
PolkadotNetworkIcon,
KusamaNetworkIcon,
DebioNetworkIcon,
} from 'src/components/atoms/Icons';
import ShowIf from 'src/components/common/show-if.component';
import { TipsResult } from 'src/interfaces/blockchain-interface';
Expand Down Expand Up @@ -59,6 +60,10 @@ const networkOptions: MenuOptions<string>[] = [
id: 'myriad',
title: 'Myriad',
},
{
id: 'debio',
title: 'Debio',
},
];

export const Tip: React.FC<TipProps> = props => {
Expand All @@ -83,6 +88,7 @@ export const Tip: React.FC<TipProps> = props => {
kusama: <KusamaNetworkIcon width={'24px'} height={'24px'} />,
near: <NearNetworkIcon24 width={'24px'} height={'24px'} />,
myriad: <MyriadCircleIcon width={'24px'} height={'24px'} />,
debio: <DebioNetworkIcon width={'24px'} height={'24px'} />,
}),
[],
);
Expand Down

0 comments on commit 264d80e

Please sign in to comment.