diff --git a/explorer/src/components/account/TokenAccountSection.tsx b/explorer/src/components/account/TokenAccountSection.tsx index 9dca6aea44..2897c1a8cb 100644 --- a/explorer/src/components/account/TokenAccountSection.tsx +++ b/explorer/src/components/account/TokenAccountSection.tsx @@ -110,7 +110,7 @@ function MintAccountCard({ Uninitialized )} - {info.owner !== undefined && ( + {info.owner && ( Owner diff --git a/explorer/src/validators/accounts/token.ts b/explorer/src/validators/accounts/token.ts index 33150bee52..61094094c0 100644 --- a/explorer/src/validators/accounts/token.ts +++ b/explorer/src/validators/accounts/token.ts @@ -38,7 +38,7 @@ export type MintAccountInfo = StructType; export const MintAccountInfo = object({ decimals: number(), isInitialized: boolean(), - owner: optional(Pubkey), + owner: nullable(optional(Pubkey)), }); export type MultisigAccountInfo = StructType;