Skip to content

Commit

Permalink
Change toLocalLowerCase to toLowerCase
Browse files Browse the repository at this point in the history
  • Loading branch information
yuli-ferna committed Sep 9, 2024
1 parent b2273da commit 0a23ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/connect/src/env/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const rpcs = (chains: string[], template: (chain: string) => string) =>
.map((chain: string) => ({ [chain]: template(chain) }))
.reduce((acc, cur) => ({ ...acc, ...cur }), {});
const asRpcHost = (chain: string) =>
`https://and76cjzpa.execute-api.us-east-2.amazonaws.com/${chain.toLocaleLowerCase()}/`;
`https://and76cjzpa.execute-api.us-east-2.amazonaws.com/${chain.toLowerCase()}/`;
export const chains = [
"Wormchain",
"Osmosis",
Expand Down

0 comments on commit 0a23ff5

Please sign in to comment.