Skip to content

Commit a5047e0

Browse files
committed
fix lint
1 parent 6646e74 commit a5047e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/src/routes/admin.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import type { Route } from "./+types/admin";
1515

1616
export async function loader({ context }: Route.LoaderArgs) {
1717
const store = context.get(storeContext);
18-
const clientSideFetch = true || store == null || process.env.CYPRESS === "1";
18+
const clientSideFetch = store == null || process.env.CYPRESS === "1";
1919
if (clientSideFetch) {
2020
//? In testing, we load the user data client-side
2121
return data({

0 commit comments

Comments
 (0)