Skip to content

Commit

Permalink
Made props element optional.
Browse files Browse the repository at this point in the history
  • Loading branch information
astuanax committed Nov 1, 2023
1 parent 4b9aab1 commit 0e94448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop-app/src/renderer/components/DropDown/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type OptionOrSeparator = Option | Separator;
interface Props {
label: JSX.Element | string;
options: OptionOrSeparator[];
className: string | null;
className?: string | null;
}

export function DropDown({ label, options, className }: Props) {
Expand Down

0 comments on commit 0e94448

Please sign in to comment.