update imports/exports

This commit is contained in:
Amruth Pillai
2026-02-08 00:28:28 +01:00
parent cc01fb9418
commit 5bdc6de862
6 changed files with 30 additions and 24 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
import type { Operation } from "fast-json-patch";
import z from "zod";
import { sampleResumeData } from "@/schema/resume/sample";
import { generateRandomName, slugify } from "@/utils/string";
@@ -215,7 +214,7 @@ export const resumeRouter = {
return await resumeService.patch({
id: input.id,
userId: context.user.id,
operations: input.operations as Operation[],
operations: input.operations,
});
}),