Unverified Commit 774596bc authored by Josh Slaughter's avatar Josh Slaughter Committed by GitHub
Browse files

frontend: Toast Bug Fix (#2418)

Showing with 11 additions and 9 deletions
+11 -9
......@@ -40,15 +40,17 @@ const Toast: React.FC<ToastProps> = ({
}
}}
>
<Alert
elevation={6}
variant="filled"
onClose={onClose ? onDismiss : null}
severity={severity}
title={title}
>
{children}
</Alert>
<div>
<Alert
elevation={6}
variant="filled"
onClose={onClose ? onDismiss : null}
severity={severity}
title={title}
>
{children}
</Alert>
</div>
</Snackbar>
);
};
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment