Skip to content

Commit

Permalink
refactor(CurrencySelect): remove unused className
Browse files Browse the repository at this point in the history
  • Loading branch information
kripod committed May 31, 2024
1 parent 5b2d0cc commit d25cd08
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/CurrencySelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export interface CurrencySelectProps<T extends string = string> {
defaultValue?: NoInfer<T>;
searchPlaceholder?: string;
searchMatcher?: (item: T) => readonly string[];
className?: string;
onChange?: (value: T) => void;
}

Expand All @@ -49,7 +48,6 @@ export function CurrencySelect<const T extends string>({
defaultValue = controlledValue === undefined ? items[0] : undefined,
searchPlaceholder = "Search by name or country…",
searchMatcher = defaultSearchMatcher,
className,
onChange,
}: CurrencySelectProps<T>) {
const { label } = useField();
Expand Down

0 comments on commit d25cd08

Please sign in to comment.