浏览代码

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_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"> & {