Skip to content

Commit

Permalink
chore: add proxy icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-1979 committed Sep 28, 2024
1 parent 6088d2e commit 11f8dec
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import type { Proxy, ProxyItem, TxInfo } from '../../../util/types';
import type { DelegationInfo } from '../utils/types';
import type { ModifyModes } from './modify/ModifyDelegate';

import { faUserAstronaut } from '@fortawesome/free-solid-svg-icons';
import React, { useCallback, useEffect, useMemo, useState } from 'react';

import { AccountsStore } from '@polkadot/extension-base/stores';
Expand Down Expand Up @@ -288,7 +289,7 @@ export function Delegate ({ address, open, setOpen, showDelegationNote }: Props)
<DraggableModal minHeight={550} onClose={handleClose} open={open}>
<>
<SimpleModalTitle
icon='vaadin:del'
icon={step === STEPS.PROXY ? faUserAstronaut : 'vaadin:money-withdraw'}
onClose={step !== STEPS.WAIT_SCREEN ? handleClose : noop}
title= {title}
/>
Expand Down

0 comments on commit 11f8dec

Please sign in to comment.