Skip to content

Commit

Permalink
chore: prop can be undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
luizakp committed Nov 7, 2024
1 parent ecd26d4 commit 1f62699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ui/Toaster.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function Toaster({
className,
position = "top-right",
}: {
className: string;
className?: string;
position?: "top-right" | "top-left" | "bottom-right" | "bottom-left";
}) {
const { toasts } = useToast();
Expand Down

0 comments on commit 1f62699

Please sign in to comment.