From a4be9623a3910c8a80e9dd1f09f6a6d6c64ad95a Mon Sep 17 00:00:00 2001 From: devintegral6 Date: Fri, 15 Nov 2019 10:39:56 +0700 Subject: [PATCH] fixed restore icons for electron --- src/view/components/account/AccountRestoreProcess/index.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/view/components/account/AccountRestoreProcess/index.tsx b/src/view/components/account/AccountRestoreProcess/index.tsx index 9604b6b6..ac8386d5 100644 --- a/src/view/components/account/AccountRestoreProcess/index.tsx +++ b/src/view/components/account/AccountRestoreProcess/index.tsx @@ -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 {