Feroze Mohideen 2 лет назад
Родитель
Сommit
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_credential_identifier: 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 ClientCluster = Omit<SerializedCluster, "cloud_provider"> & {