Skip to content

Commit

Permalink
url updated
Browse files Browse the repository at this point in the history
  • Loading branch information
nxtcoder36 committed Jun 11, 2024
1 parent e763a50 commit b719975
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions lib/app-setup/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,7 @@ import { isDev } from '~/lib/client/helpers/log';
import { Button } from '~/components/atoms/button';
import { ChildrenProps } from '~/components/types';
import Page404 from '~/components/organisms/page-404';
import {
consoleBaseUrl,
getClientEnv,
getServerEnv,
} from '~/root/lib/configs/base-url.cjs';
import { getClientEnv, getServerEnv } from '~/root/lib/configs/base-url.cjs';
import { useDataFromMatches } from '../client/hooks/use-custom-matches';

export const links: LinksFunction = () => [
Expand Down Expand Up @@ -134,7 +130,7 @@ export function ErrorBoundary() {
}

export const _404Main = () => {
return <Page404 link={consoleBaseUrl} />;
return <Page404 link="/" />;
};

export const meta = () => {
Expand Down

0 comments on commit b719975

Please sign in to comment.