Skip to content

Commit

Permalink
fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianscatularo committed Sep 17, 2024
1 parent d3e662d commit ce72801
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion apps/connect/src/components/atoms/Connect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ export const Connect = memo(() => {

useEffect(() => {
if (config) {
localStorage.setItem(`${window.location.href}?${import.meta.env.VITE_APP_VERSION}`, JSON.stringify(config, null, 2));
localStorage.setItem(
`${window.location.href}?${import.meta.env.VITE_APP_VERSION}`,
JSON.stringify(config, null, 2)
);
}
}, [config]);

Expand Down
2 changes: 1 addition & 1 deletion apps/connect/src/theme/connect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import type { WormholeConnectConfig } from "@wormhole-foundation/wormhole-connec
export const theme: WormholeConnectConfig["customTheme"] = {
background: {
default: "rgba(12, 9, 60, 0)",
}
},
};

0 comments on commit ce72801

Please sign in to comment.