This commit is contained in:
jaredvu 2024-02-09 20:21:52 -08:00
parent 8cfe4e9d85
commit 1ffbead4b3
No known key found for this signature in database
GPG Key ID: B9FE2F3F0A5D523C
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -132,7 +132,7 @@ export const WithdrawForm = () => {
setError(undefined);
}
} catch (error) {
// setError(error.message);
setError(error.message);
} finally {
setIsLoading(false);
}