Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web-app/src/modules/core/routes/Account/Account.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const Account: FC<Props> = ({ accountAddress }) => {
// Correct balance display for un-migrated V7 slow wallets:
// If it's a slow wallet and not initialized then display unlocked as zero and balance as correct,
// add a note that account is not initialized
account.initialized && ( <div>Note: this account has not been initialized</div> )
!account.initialized && ( <div>Note: this account has not been initialized</div> )
}

<div className="grid grid-cols-12 gap-4">
Expand Down