diff --git a/apps/connect/src/components/ConnectLoader.tsx b/apps/connect/src/components/ConnectLoader.tsx index d7e7490db..8dcea76d2 100644 --- a/apps/connect/src/components/ConnectLoader.tsx +++ b/apps/connect/src/components/ConnectLoader.tsx @@ -15,8 +15,11 @@ const SpinnerContainer = styled(Box)(() => ({ justifyContent: "center", })); -const { VITE_APP_JS_WC_INTEGRITY_SHA_384, VITE_APP_CSS_WC_INTEGRITY_SHA_384, VITE_APP_WC_ASSETS_HASH } = - import.meta.env; +const { + VITE_APP_JS_WC_INTEGRITY_SHA_384, + VITE_APP_CSS_WC_INTEGRITY_SHA_384, + VITE_APP_WC_ASSETS_HASH, +} = import.meta.env; export default function ConnectLoader({ config }: WormholeLoaderProps) { const [loading, setLoading] = useState(true);