Skip to content

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
  • Loading branch information
Saelmala committed Aug 28, 2024
1 parent 10ff1b5 commit a5c9801
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/filter/SortSelect.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
type SelectProps = {
type SortSelectProps = {
value: string;
onChange: (e: React.ChangeEvent<HTMLSelectElement>) => void;
options: readonly string[];
};

export const SortSelect = ({ value, onChange, options }: SelectProps) => {
export const SortSelect = ({ value, onChange, options }: SortSelectProps) => {
return (
<select
className="border justify-center text-sm rounded-lg w-1/2 pl-2 py-1.5 bg-gray-700 border-gray-600 placeholder-gray-400 text-p"
Expand Down

0 comments on commit a5c9801

Please sign in to comment.