Skip to content

Commit a67a83d

Browse files
committed
fix: Flashes z-index
1 parent 4319c83 commit a67a83d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/utils/flashes.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const Flashes = () => {
6060
const errorId = query.errorId as keyof typeof flashes;
6161
const ErrorComponent = renderErrorContent[errorId];
6262
return (
63-
<Box sx={{ position: "fixed", bottom: "1rem", right: "1rem" }}>
63+
<Box sx={{ position: "fixed", bottom: "1rem", right: "1rem", zIndex: 1 }}>
6464
<AnimatePresence>
6565
{errorId && !dismissed[errorId] ? (
6666
<motion.div

0 commit comments

Comments
 (0)