diff --git a/src/views/dialogs/WithdrawalGateDialog.tsx b/src/views/dialogs/WithdrawalGateDialog.tsx index fc011be..7af97fb 100644 --- a/src/views/dialogs/WithdrawalGateDialog.tsx +++ b/src/views/dialogs/WithdrawalGateDialog.tsx @@ -1,14 +1,14 @@ import styled, { AnyStyledComponent } from 'styled-components'; +import { ButtonAction, ButtonType } from '@/constants/buttons'; import { STRING_KEYS } from '@/constants/localization'; import { useStringGetter, useURLConfigs } from '@/hooks'; +import { LinkOutIcon } from '@/icons'; import { layoutMixins } from '@/styles/layoutMixins'; +import { Button } from '@/components/Button'; import { Dialog } from '@/components/Dialog'; import { Icon, IconName } from '@/components/Icon'; -import { Button } from '@/components/Button'; -import { LinkOutIcon } from '@/icons'; -import { ButtonAction, ButtonType } from '@/constants/buttons'; type ElementProps = { setIsOpen: (open: boolean) => void; diff --git a/src/views/forms/AccountManagementForms/WithdrawForm.tsx b/src/views/forms/AccountManagementForms/WithdrawForm.tsx index 7ba13d9..c655c83 100644 --- a/src/views/forms/AccountManagementForms/WithdrawForm.tsx +++ b/src/views/forms/AccountManagementForms/WithdrawForm.tsx @@ -132,7 +132,7 @@ export const WithdrawForm = () => { setError(undefined); } } catch (error) { - // setError(error.message); + setError(error.message); } finally { setIsLoading(false); }