Skip to content

Commit 8b8c042

Browse files
committed
fix
1 parent 470fc70 commit 8b8c042

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/routes/__auth.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Route } from "./+types/__auth";
22
import { Outlet, useLocation, type LoaderFunctionArgs } from "react-router";
3-
import { Login } from "#~/components/login";
3+
import { Login } from "#~/basics/login";
44
import { isProd } from "#~/helpers/env.server";
55
import { getUser } from "#~/models/session.server";
66
import { useOptionalUser } from "#~/utils";

app/routes/auth.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { Route } from "./+types/auth";
22
import { redirect } from "react-router";
33

44
import { initOauthLogin } from "#~/models/session.server";
5-
import { Login } from "#~/components/login";
5+
import { Login } from "#~/basics/login";
66

77
// eslint-disable-next-line no-empty-pattern
88
export async function loader({}: Route.LoaderArgs) {

0 commit comments

Comments
 (0)