Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-orbs committed Jun 27, 2024
1 parent 8b351c3 commit ee18a2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/data/foundation/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export const FOUNDATION_PROPOSALS_ADDRESSES = [
"EQAx5JjTHpQ_5EeWBAErl4_AWhh_JFBh2UvuTWAeqdbpC0C1",
"EQD0b665oQ8R3OpEjKToOrqQ9a9B52UnlY-VDKk73pCccvLr",
"EQCVy5bEWLQZrh5PYb1uP3FSO7xt4Kobyn4T9pGy2c5-i-GS",
"EQDWNc4ipRELo2gbQpxmNeSPNZ91eyUOPIAVJxdGWnaEOdYv",
];

export const shouldHideVerify = (address: string) => {
Expand Down
2 changes: 1 addition & 1 deletion src/query/getters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export const useDaoQuery = (daoAddress: string) => {
);

if (daoAddress === FOUNDATION_DAO_ADDRESS) {
daoProposals = [...daoProposals, ...FOUNDATION_PROPOSALS_ADDRESSES];
daoProposals = _.uniq([...daoProposals, ...FOUNDATION_PROPOSALS_ADDRESSES]);
}
return {
...dao,
Expand Down

0 comments on commit ee18a2e

Please sign in to comment.