Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
denis-orbs committed Sep 15, 2024
1 parent ea73adf commit 300cdd0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ export const VERIFIED_DAOS = [
"EQAdSeBuh5M3W5fg4-Yh6TX9p4CELLRpFHp43vUQYajPXQg_",
"EQBEC1-B3e-CqFqBWrkPM-sIT9tsN1rarIPpg3E-LPecB5SC",
"EQCVWiKn2KI4fukFxkSG-Z9Abw0s0NJOomO6h8V1oG55nbyp",
"EQC2qRI50MAPlqqyjCz1TXrehFGVLnQ1CSv6PX5RyZju55eB"
"EQC2qRI50MAPlqqyjCz1TXrehFGVLnQ1CSv6PX5RyZju55eB",
"EQDv3VVbwaNwqIzn_EVb_dygJGj-AM9CZ80ZnkG8K_k48r-9"
];

export const releaseMode = import.meta.env.VITE_STAGING
Expand Down
2 changes: 1 addition & 1 deletion src/forms/dao-form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export const useDaoMetadataSchema = () => {
return value.startsWith("https://");
})
.test("", createDaoTranslations.errors.logoURL2, (value) => {
return IS_DEV ? true : value.endsWith(".png") || value.endsWith(".jpg");
return IS_DEV ? true : value.endsWith(".png") || value.endsWith(".jpg") || value.endsWith(".jpeg");
}),

dns: Yup.string()
Expand Down

0 comments on commit 300cdd0

Please sign in to comment.