Project.blob -> Project.key

This commit is contained in:
Oliver Bryan
2025-12-29 06:17:40 +00:00
parent 54493f7c60
commit f534bc6dec
16 changed files with 509 additions and 71 deletions

View File

@@ -5,8 +5,8 @@ export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
export function issueID(blob: string, num: number) {
return `${blob}-${num.toString().padStart(3, "0")}`;
export function issueID(key: string, num: number) {
return `${key}-${num.toString().padStart(3, "0")}`;
}
export function getAuthHeaders(): HeadersInit {