chore: fix knip issues

This commit is contained in:
Amruth Pillai
2026-07-05 19:48:55 +02:00
parent 00a9721556
commit 5c1845b1a6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ export function parseCsv(input: string): string[][] {
return rows.filter((r) => r.some((cell) => cell.trim() !== ""));
}
export type ParsedApplication = {
type ParsedApplication = {
company: string;
role: string;
status?: ApplicationStatus;
@@ -6,7 +6,7 @@ import { create } from "zustand/react";
type PanelImperativeHandle = ReturnType<typeof usePanelRef>;
export const BUILDER_LAYOUT_COOKIE_NAME = "builder_layout";
const BUILDER_LAYOUT_COOKIE_NAME = "builder_layout";
export type BuilderLayout = {
left: number;