Skip to content

Commit

Permalink
fix: more build errors 😿
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinjosethomas committed Dec 12, 2024
1 parent a6de98b commit 0b74838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Misc/ModalContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const ModalContainer: React.FC<Props> = ({
exit={{ y: 100, opacity: 0 }}
transition={{ duration: 0.2, type: 'tween' }}
className="max-w-[100vw] rounded bg-backdrop p-8"
onClick={(e) => e.stopPropagation()}
onClick={(e: React.MouseEvent) => e.stopPropagation()}
>
{children}
</motion.div>
Expand Down

0 comments on commit 0b74838

Please sign in to comment.