Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: set debio tips #1753

Merged
merged 1 commit into from
Mar 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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