From 618eebf12add69dd1a81f94a14d09729a4d133e4 Mon Sep 17 00:00:00 2001 From: Tymmmy <117268143+Tymmmy@users.noreply.github.com> Date: Thu, 11 Dec 2025 17:04:01 +0900 Subject: [PATCH 1/2] Update root.tsx --- app/root.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/root.tsx b/app/root.tsx index f361aca..7054a90 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -29,7 +29,7 @@ import { cn } from './lib/cn' export const links: LinksFunction = () => [ { rel: 'icon', - href: '/favicon.svg', + href: '/favicon.iso', type: 'image/svg+xml' }, { rel: 'stylesheet', href: stylesheet }, @@ -40,15 +40,15 @@ export const links: LinksFunction = () => [ export async function loader() { return json({ ENV: { - STRIPE_PUBLIC_KEY: process.env.STRIPE_PUBLIC_KEY, - }, - }); + STRIPE_PUBLIC_KEY: process.env.STRIPE_PUBLIC_KEY + } + }) } export default function App() { const navigation = useNavigation() const location = useLocation() - const data = useLoaderData(); + const data = useLoaderData() // detect if it's loaded in wm tools const isEmbeded = location.pathname.indexOf('extension') !== -1 @@ -95,7 +95,7 @@ export default function App() {