Skip to content

Commit

Permalink
Adjusted block list
Browse files Browse the repository at this point in the history
  • Loading branch information
namedotget committed Dec 18, 2024
1 parent c58392a commit 6f4134f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/const/whitelist.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//https://docs.google.com/spreadsheets/d/1LsYxkI_1alFUD_NxM2a5RngeSRC5e5ElUpP6aR30DiM/edit?gid=0#gid=0
export const blockedTeams: any = []
export const blockedCitizens: any = ['48', '72']
export const blockedCitizens: any = [48, 72]

export const featuredTeams: any = ['6', '7', '8', '1', '9', '5', '4', '3', '2']
2 changes: 1 addition & 1 deletion ui/pages/citizen/[tokenIdOrName].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ export const getServerSideProps: GetServerSideProps = async ({ params }) => {
if (
!nft ||
!nft.metadata.uri ||
blockedCitizens.includes(nft.metadata.id)
blockedCitizens.includes(Number(nft.metadata.id))
) {
return {
notFound: true,
Expand Down

0 comments on commit 6f4134f

Please sign in to comment.