690327:1235 Fixing Refactor ADR-019 Naming convention uuid #15
CI / CD Pipeline / build (push) Successful in 5m27s
CI / CD Pipeline / deploy (push) Successful in 11m21s

This commit is contained in:
2026-03-27 12:35:08 +07:00
parent 2eab2e73d6
commit bb33e542c7
7 changed files with 45 additions and 7 deletions
@@ -33,12 +33,12 @@ import {
import { Skeleton } from '@/components/ui/skeleton';
interface Project {
publicId: string; // ADR-019: uuid exposed as 'publicId'
publicId: string;
projectCode: string;
projectName: string;
isActive: boolean;
createdAt: string;
updatedAt: string;
createdAt?: string;
updatedAt?: string;
}
const projectSchema = z.object({