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
This commit is contained in:
Ali Waseem
2026-05-25 10:37:09 -06:00
committed by GitHub
parent 838fe7f976
commit 493fc166c9

View File

@@ -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