Skip to content

Commit

Permalink
minor code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
barbarah committed Nov 22, 2023
1 parent e79f2e7 commit 41facaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/list/order-selector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {useTranslations} from 'next-intl';
const defaultValues = [SortBy.RelevanceDesc, SortBy.NameAsc, SortBy.NameDesc];

export function OrderSelector({values = defaultValues}: {values?: string[]}) {
const t= useTranslations('Sort');
const t = useTranslations('Sort');
const sortBy = useListStore(s => s.sortBy);
const sortChange = useListStore(s => s.sortChange);

Expand Down

0 comments on commit 41facaf

Please sign in to comment.