increase screenshot ttl to outdated resumes

This commit is contained in:
Amruth Pillai
2026-01-25 00:27:58 +01:00
parent 92f6a6a16b
commit b5f4e9af46
4 changed files with 21 additions and 11 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ import { create } from "zustand/react";
import { orpc, type RouterOutput } from "@/integrations/orpc/client";
import type { ResumeData } from "@/schema/resume/data";
type Resume = Omit<RouterOutput["resume"]["getById"], "hasPassword">;
type Resume = Pick<RouterOutput["resume"]["getByIdForPrinter"], "id" | "name" | "slug" | "tags" | "data" | "isLocked">;
type ResumeStoreState = {
resume: Resume;