Skip to content

Commit 67d4125

Browse files
committed
refactor: convert auth routes to TypeScript and update route definitions
1 parent 8c1cfdb commit 67d4125

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

app/routes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ export default [
1919
// Auth
2020
...prefix("auth", [
2121
layout("routes/auth/layout.tsx", [
22-
route(":provider/callback", "routes/auth/provider-callback.tsx"),
22+
route(":provider/callback", "routes/auth/provider-callback.ts"),
2323
route("login", "routes/auth/login.tsx"),
2424
route("verify", "routes/auth/verify.tsx"),
2525
]),
26-
route("logout", "routes/auth/logout.tsx"),
26+
route("logout", "routes/auth/logout.ts"),
2727
]),
2828

2929
// API
File renamed without changes.

0 commit comments

Comments
 (0)