Fix unexpected any

Signed-off-by: gearnode <bryan@frimin.fr>
This commit is contained in:
gearnode
2025-03-05 11:07:33 +01:00
parent c69b988ba1
commit de4e91cab2
2 changed files with 4 additions and 4 deletions

View File

@@ -314,7 +314,7 @@ function PolicyListPageContent({
> >
<PolicyCard <PolicyCard
title={policy.name} title={policy.name}
content={(policy as any).content} content={policy.content}
status={policy.status} status={policy.status}
updatedAt={policy.updatedAt} updatedAt={policy.updatedAt}
/> />

View File

@@ -1,5 +1,5 @@
/** /**
* @generated SignedSource<<a49c4b1ca92e109b1091a1431fe0c871>> * @generated SignedSource<<ebffaaa37d8815b22f9fa75aca6e75d2>>
* @lightSyntaxTransform * @lightSyntaxTransform
* @nogrep * @nogrep
*/ */
@@ -19,11 +19,11 @@ export type PolicyListPageQuery$data = {
readonly edges: ReadonlyArray<{ readonly edges: ReadonlyArray<{
readonly node: { readonly node: {
readonly content: string; readonly content: string;
readonly createdAt: string; readonly createdAt: any;
readonly id: string; readonly id: string;
readonly name: string; readonly name: string;
readonly status: PolicyStatus; readonly status: PolicyStatus;
readonly updatedAt: string; readonly updatedAt: any;
}; };
}>; }>;
}; };