Skip to content

Commit

Permalink
fix: hide receive address ui when wallet receive address is loading
Browse files Browse the repository at this point in the history
  • Loading branch information
woodenfurniture committed Nov 7, 2024
1 parent d9f294e commit 6b25460
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,10 @@ export const SharedRecipientAddress = ({
isWalletReceiveAddressLoading,
})

if (isWalletReceiveAddressLoading) {
return null
}

// The manual receive address input form
if (isRecipientAddressEditing || shouldForceDisplayManualAddressEntry) {
return (
Expand Down

0 comments on commit 6b25460

Please sign in to comment.