Skip to content

Commit

Permalink
fix(console): add "" when updating claimed_websites
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidsowardx committed Jan 25, 2024
1 parent 94aae07 commit 5c49fa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/common/src/metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export const setOriginArrayMetaData = (
Address("${address}")
"${key}"
Enum<Metadata::OriginArray>(
Array<String>(${value.join(', ')})
Array<String>(${value.map((origin) => `"${origin}"`).join(', ')})
)
;
`
Expand Down

0 comments on commit 5c49fa0

Please sign in to comment.