Skip to content

Commit

Permalink
Remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorjdawson committed Dec 7, 2021
1 parent 16b7775 commit 4392caf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const getEnumKey = (chainName: string) => {
let enumKey = capitalize(chainName.replace(/\s/g, ''))
// If the key starts with a number or contains ',' or '.' then wrap it in quotes
enumKey = !!chainName.match(/^\d|[\-\.]/) ? `'${enumKey}'` : enumKey
return enumKey // `${enumKey} = '${chainName}'`
return enumKey
}

const getBuildEnums = (chains: Chain[]) =>
Expand Down

0 comments on commit 4392caf

Please sign in to comment.