Skip to content

Commit

Permalink
Explorer: account does not exist (solana-labs#29308)
Browse files Browse the repository at this point in the history
explorer: account does not exist
  • Loading branch information
ngundotra authored Dec 16, 2022
1 parent 1969226 commit 8ef900b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion explorer/src/components/account/UnknownAccountCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function UnknownAccountCard({ account }: { account: Account }) {
<td>Balance (SOL)</td>
<td className="text-lg-end">
{account.lamports === 0 ? (
"No longer exists on chain"
"Account does not exist"
) : (
<SolBalance lamports={account.lamports} />
)}
Expand Down

0 comments on commit 8ef900b

Please sign in to comment.