From 493fc166c9a7ebabd205db3f08e108dc7dec40ed Mon Sep 17 00:00:00 2001 From: Ali Waseem Date: Mon, 25 May 2026 10:37:09 -0600 Subject: [PATCH] chore: remove any type to let ratchet rules pass (#46349) ## I have read the [CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md) file. YES ## What kind of change does this PR introduce? Remove any type for hard definition --- .../Integrations/Integration/IntegrationOverviewTab.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/studio/components/interfaces/Integrations/Integration/IntegrationOverviewTab.tsx b/apps/studio/components/interfaces/Integrations/Integration/IntegrationOverviewTab.tsx index f9ec67855ae..b86a488db39 100644 --- a/apps/studio/components/interfaces/Integrations/Integration/IntegrationOverviewTab.tsx +++ b/apps/studio/components/interfaces/Integrations/Integration/IntegrationOverviewTab.tsx @@ -2,7 +2,7 @@ import { useParams } from 'common' import { PropsWithChildren, ReactNode } from 'react' import { cn } from 'ui' -import { INTEGRATIONS } from '../Landing/Integrations.constants' +import { IntegrationDefinition, INTEGRATIONS } from '../Landing/Integrations.constants' import { BuiltBySection } from './BuildBySection' import { MarkdownContent } from './MarkdownContent' import { RequiredExtensionsSection } from './RequiredExtensionsSection' @@ -23,7 +23,7 @@ export const OverviewTabSharedContent = ({ alert, children, }: PropsWithChildren<{ - integration: any + integration: IntegrationDefinition hideRequiredExtensionsSection?: boolean actions?: ReactNode alert?: ReactNode