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 af614e4 commit 984ba21
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 984ba21

Please sign in to comment.