From bc892dc2fb8cd63bb7158a5d5294feafc0097099 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Fri, 21 Oct 2022 22:15:15 +0300 Subject: [PATCH] Fix TS error --- app/modules/auth/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/auth/index.ts b/app/modules/auth/index.ts index 4163a74e6..1d5424444 100644 --- a/app/modules/auth/index.ts +++ b/app/modules/auth/index.ts @@ -10,4 +10,4 @@ export { getUser, requireUser } from "./user.server"; export { useUser } from "./user"; -export { AuthErrorCode } from "./errors"; +export type { AuthErrorCode } from "./errors";