Skip to content

Commit

Permalink
fix: unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
thomhickey committed Dec 3, 2024
1 parent 6f21de9 commit a095816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/routers/user.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { hasAuthenticated, hasAdmin, router } from "../trpc";
import { z } from "zod";
import { UserType, ROLE_OPTIONS, Roles } from "@/types/auth";
import { UserType, ROLE_OPTIONS } from "@/types/auth";
import { TRPCError } from "@trpc/server";

export const sortOrderSchema = z.enum(["asc", "desc"]).default("asc");
Expand Down

0 comments on commit a095816

Please sign in to comment.