Skip to content

Commit

Permalink
Fix connect and format
Browse files Browse the repository at this point in the history
  • Loading branch information
yuli-ferna committed Sep 9, 2024
1 parent e130ca6 commit b2273da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/connect/src/env/token-bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const ENV: Env = {
cctpWarning: {
href: USDC_BRIDGE_HREF,
},
networks: [...chains, "Solana", "Injective", "Klaytn"],
chains: [...chains, "Solana", "Injective", "Klaytn"],
moreNetworks: {
href: ADVANCE_TOOLS_HREF_TEMPLATE,
target: "_blank",
Expand Down
4 changes: 1 addition & 3 deletions apps/connect/src/providers/telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@ const getErrorMessage = (error: any) => {
};

let lastChain: string;
export const eventHandler = (
e: WormholeConnectEvent
) => {
export const eventHandler = (e: WormholeConnectEvent) => {
// Ignore the load event
if (e.type === "load") return;

Expand Down

0 comments on commit b2273da

Please sign in to comment.