Skip to content

Commit

Permalink
fixed restore icons for electron
Browse files Browse the repository at this point in the history
  • Loading branch information
devintegral6 committed Nov 15, 2019
1 parent 723e905 commit a4be962
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/view/components/account/AccountRestoreProcess/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ import { PanelProgress } from '~/view/components/panels/PanelProgress';

import create_account from '~/images/icons/create_account.svg';
import account_confirm from '~/images/icons/account_confirm.svg';
import { getURL } from '~/utility/dom';

const STAGES = [
{ icon: create_account, title: "Create Account" },
{ icon: account_confirm, title: "Confirm" },
{ icon: getURL(create_account), title: "Create Account" },
{ icon: getURL(account_confirm), title: "Confirm" },
];

interface IProps {
Expand Down

0 comments on commit a4be962

Please sign in to comment.