From fe6d56aba1337b4509d4803d668490f34f37349f Mon Sep 17 00:00:00 2001 From: Nevo David Date: Tue, 6 Aug 2024 23:03:16 +0700 Subject: [PATCH] feat: set loading true --- apps/frontend/src/components/marketplace/seller.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/frontend/src/components/marketplace/seller.tsx b/apps/frontend/src/components/marketplace/seller.tsx index 14592cbb..498faa19 100644 --- a/apps/frontend/src/components/marketplace/seller.tsx +++ b/apps/frontend/src/components/marketplace/seller.tsx @@ -19,6 +19,7 @@ export const AddAccount: FC<{ openBankAccount: (country: string) => void }> = ( ) => { const { openBankAccount } = props; const [country, setCountry] = useState(''); + const [loading, setLoading] = useState(false); return (
Please select your country where your business is. @@ -40,8 +41,12 @@ export const AddAccount: FC<{ openBankAccount: (country: string) => void }> = (