Skip to content

Commit 0b74838

Browse files
fix: more build errors 😿
1 parent a6de98b commit 0b74838

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Misc/ModalContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const ModalContainer: React.FC<Props> = ({
2929
exit={{ y: 100, opacity: 0 }}
3030
transition={{ duration: 0.2, type: 'tween' }}
3131
className="max-w-[100vw] rounded bg-backdrop p-8"
32-
onClick={(e) => e.stopPropagation()}
32+
onClick={(e: React.MouseEvent) => e.stopPropagation()}
3333
>
3434
{children}
3535
</motion.div>

0 commit comments

Comments
 (0)