فهرست منبع

remove validation (#4262)

Feroze Mohideen 2 سال پیش
والد
کامیت
80c631b22f
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      dashboard/src/lib/clusters/types.ts

+ 2 - 2
dashboard/src/lib/clusters/types.ts

@@ -17,8 +17,8 @@ export const clusterValidator = z.object({
   cloud_provider: z.enum(["AWS", "GCP", "Azure", "Local"]),
   cloud_provider: z.enum(["AWS", "GCP", "Azure", "Local"]),
   cloud_provider_credential_identifier: z.string(),
   cloud_provider_credential_identifier: z.string(),
   status: z.string(),
   status: z.string(),
-  created_at: z.string(),
-  updated_at: z.string(),
+  // created_at: z.string(),
+  // updated_at: z.string(),
 });
 });
 export type SerializedCluster = z.infer<typeof clusterValidator>;
 export type SerializedCluster = z.infer<typeof clusterValidator>;
 export type ClientCluster = Omit<SerializedCluster, "cloud_provider"> & {
 export type ClientCluster = Omit<SerializedCluster, "cloud_provider"> & {