Compare commits

..

2 Commits

Author SHA1 Message Date
dvelo
bf99f259c4
fix: add "go-to-production" link
fix: add "go-to-production" link
2024-12-22 19:15:03 -06:00
dvelo
bb070fdc63 fix: add "go-to-production" link 2024-12-22 19:14:34 -06:00

@ -34,6 +34,7 @@ import { dark } from "@clerk/themes";
import { useTheme } from "next-themes";
import { type ReactNode, useEffect, useState } from "react";
import { ThemeProvider } from "../ThemeProvider";
import Link from "next/link";
export function ClerkThemeProvider({
children,
@ -48,7 +49,8 @@ export function ClerkThemeProvider({
return (
<html lang="en" className={className}>
<body>
Non-authenticated environments are disallowed on this origin.
Non-authenticated environments are disallowed on this origin. <br />
<Link href="https://mhsf.app">Go to production</Link>
</body>
</html>
);