Skip to content

Commit

Permalink
fix: SafelistRequestStatus bug fix issue #416 (#419)
Browse files Browse the repository at this point in the history
Co-authored-by: Brian Chen <[email protected]>
  • Loading branch information
nirmit1509 and thebrianchen authored May 8, 2024
1 parent 5fdff2f commit 057ad2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function getNftContractFromRaw(
openSeaMetadata: {
...rawNftContract.openSeaMetadata,
safelistRequestStatus:
rawNftContract.openSeaMetadata.safelistRequestStatus !== null
rawNftContract.openSeaMetadata?.safelistRequestStatus !== null
? stringToEnum(
rawNftContract.openSeaMetadata.safelistRequestStatus,
OpenSeaSafelistRequestStatus
Expand Down

0 comments on commit 057ad2b

Please sign in to comment.