From 1f3db74114d7ed82681d8a6c1ea4038867fb5c00 Mon Sep 17 00:00:00 2001 From: Bill He Date: Mon, 9 Oct 2023 09:23:29 -0700 Subject: [PATCH] address nit --- src/views/forms/AccountManagementForms/WithdrawForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/forms/AccountManagementForms/WithdrawForm.tsx b/src/views/forms/AccountManagementForms/WithdrawForm.tsx index 898c0a1..f24b628 100644 --- a/src/views/forms/AccountManagementForms/WithdrawForm.tsx +++ b/src/views/forms/AccountManagementForms/WithdrawForm.tsx @@ -4,6 +4,7 @@ import styled, { type AnyStyledComponent } from 'styled-components'; import type { NumberFormatValues } from 'react-number-format'; import { shallowEqual, useSelector } from 'react-redux'; import { TESTNET_CHAIN_ID } from '@dydxprotocol/v4-client-js'; +import { isAddress } from 'viem'; import { TransferInputField, TransferInputTokenResource, TransferType } from '@/constants/abacus'; import { AlertType } from '@/constants/alerts'; @@ -38,7 +39,6 @@ import { MustBigNumber } from '@/lib/numbers'; import { TokenSelectMenu } from './TokenSelectMenu'; import { WithdrawButtonAndReceipt } from './WithdrawForm/WithdrawButtonAndReceipt'; -import { isAddress } from 'viem'; export const WithdrawForm = () => { const stringGetter = useStringGetter();