diff --git a/client/src/utils/nodeHelpers.ts b/client/src/utils/nodeHelpers.ts index f831669..45ef479 100644 --- a/client/src/utils/nodeHelpers.ts +++ b/client/src/utils/nodeHelpers.ts @@ -4,7 +4,7 @@ */ function getReadyStatus({status}: {status: {[key: string]: any}}) { if (!status.conditions) return null; - const ready = status.conditions.find((y: any) => y.type === 'Ready'); + const ready = status.conditions.find((y: {type: string}) => y.type === 'Ready'); return ready && ready.status; }