diff --git a/packages/frontend/src/components/projects/create/AccountsDropdown.tsx b/packages/frontend/src/components/projects/create/AccountsDropdown.tsx index d885a018..95b1451b 100644 --- a/packages/frontend/src/components/projects/create/AccountsDropdown.tsx +++ b/packages/frontend/src/components/projects/create/AccountsDropdown.tsx @@ -1,44 +1,52 @@ -import { Select, Option } from '@snowballtools/material-tailwind-react-fork'; +import { Select, Option, Spinner } from '@snowballtools/material-tailwind-react-fork'; const AccountsDropdown = ({ accounts, + isDataReceived, onAccountChange, }: { accounts: string[]; + isDataReceived: boolean; onAccountChange: (selectedAccount: string) => void; }) => { return (
- {!accounts.length ? ( -
-

- No accounts found. Please visit{' '} - +

+ No accounts found. Please visit{' '} + + store.laconic.com + {' '} + to create a wallet. +

+
+ ) : ( +
+ +
+ ) ) : ( -
- +
+
)}
diff --git a/packages/frontend/src/components/projects/create/Configure.tsx b/packages/frontend/src/components/projects/create/Configure.tsx index 47cc2c04..dbc2d7b5 100644 --- a/packages/frontend/src/components/projects/create/Configure.tsx +++ b/packages/frontend/src/components/projects/create/Configure.tsx @@ -48,6 +48,7 @@ const Configure = () => { const [isPaymentLoading, setIsPaymentLoading] = useState(false); const [isPaymentDone, setIsPaymentDone] = useState(false); const [isFrameVisible, setIsFrameVisible] = useState(false); + const [isAccountsDataReceived, setIsAccountsDataReceived] = useState(false); const [searchParams] = useSearchParams(); const templateId = searchParams.get('templateId'); @@ -573,9 +574,10 @@ const Configure = () => {
) : ( <> - + diff --git a/packages/frontend/src/components/projects/create/IFrameModal.tsx b/packages/frontend/src/components/projects/create/IFrameModal.tsx index d912438f..f9f00915 100644 --- a/packages/frontend/src/components/projects/create/IFrameModal.tsx +++ b/packages/frontend/src/components/projects/create/IFrameModal.tsx @@ -6,10 +6,12 @@ import { VITE_LACONICD_CHAIN_ID, VITE_WALLET_IFRAME_URL } from 'utils/constants' const IFrameModal = ({ setAccounts, + setIsDataReceived, isVisible, toggleModal, }: { setAccounts: (accounts: string[]) => void; + setIsDataReceived: (isReceived: boolean) => void; isVisible: boolean; toggleModal: () => void; }) => { @@ -18,6 +20,7 @@ const IFrameModal = ({ // TODO: Use env for origin URL if (event.origin !== VITE_WALLET_IFRAME_URL) return; + setIsDataReceived(true); if (event.data.type === 'WALLET_ACCOUNTS_DATA') { setAccounts(event.data.data); } else if (event.data.type === 'ERROR') {