Skip to content

Commit 0b9b779

Browse files
committed
fix import
1 parent b9da8bf commit 0b9b779

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/docs/pickers/select/select-searchable-demo.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"use client"
22

3-
import { useFilter } from "react-aria"
4-
import { Autocomplete } from "react-aria-components"
3+
import { Autocomplete, useFilter } from "react-aria-components"
54
import { ListBox, PopoverContent, SearchField, Select } from "ui"
65
const languages = [
76
{ id: "en", name: "English" },

components/ui/command-menu.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,21 @@
33
import { cn } from "@/utils/classes"
44
import { IconSearch } from "justd-icons"
55
import { createContext, use, useEffect } from "react"
6-
import { useFilter } from "react-aria"
76
import type {
87
AutocompleteProps,
98
CollectionRenderer,
109
MenuProps,
1110
MenuTriggerProps,
1211
SearchFieldProps,
12+
1313
} from "react-aria-components"
1414
import {
1515
Autocomplete,
1616
Button,
1717
Collection,
1818
CollectionRendererContext,
1919
DefaultCollectionRenderer,
20+
useFilter,
2021
Dialog,
2122
Header,
2223
Input,

0 commit comments

Comments
 (0)