Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/ui/src/components/Radio/Radio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function RadioGroup({
interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
label: string
afterLabel?: string
beforeLabel?: string
beforeLabel?: string | React.ReactNode
description?: string
size?: 'tiny' | 'small' | 'medium' | 'large' | 'xlarge'
hidden?: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { PermissionAction } from '@supabase/shared-types/out/constants'
import { useStore, checkPermissions, useParams } from 'hooks'
import ExtensionCard from './ExtensionCard'
import { HIDDEN_EXTENSIONS } from './Extensions.constants'
import NoSearchResults from 'components/to-be-cleaned/NoSearchResults'
import NoSearchResults from 'components/ui/NoSearchResults'
import InformationBox from 'components/ui/InformationBox'
import Link from 'next/link'

Expand Down Expand Up @@ -69,7 +69,9 @@ const Extensions: FC<Props> = ({}) => {
</div>
</div>

{extensions.length === 0 && <NoSearchResults />}
{extensions.length === 0 && (
<NoSearchResults searchString={filterString} onResetFilter={() => setFilterString('')} />
)}

<div className="my-8 w-full space-y-12">
{enabledExtensions.length > 0 && (
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading