Skip to content

Commit

Permalink
Biome
Browse files Browse the repository at this point in the history
  • Loading branch information
evadecker committed Nov 17, 2024
1 parent 742cb77 commit 1a7226d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions src/routes/_authenticated/_home/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { createFileRoute } from '@tanstack/react-router'
import { createFileRoute } from "@tanstack/react-router";

export const Route = createFileRoute('/_authenticated/_home/')({
export const Route = createFileRoute("/_authenticated/_home/")({
component: IndexRoute,
})
});

function IndexRoute() {
return
return;
}
10 changes: 5 additions & 5 deletions src/routes/_authenticated/_home/quests.index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { createFileRoute, redirect } from '@tanstack/react-router'
import { createFileRoute, redirect } from "@tanstack/react-router";

export const Route = createFileRoute('/_authenticated/_home/quests/')({
export const Route = createFileRoute("/_authenticated/_home/quests/")({
beforeLoad: async () => {
throw redirect({
to: '/',
})
to: "/",
});
},
})
});

0 comments on commit 1a7226d

Please sign in to comment.