Skip to content

Commit b9c3d3a

Browse files
authored
Fleet UI: Persist toast messages after a modal closes (#17674)
1 parent f28509e commit b9c3d3a

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* Fix flash message from closing when a modal closes

frontend/components/Modal/Modal.tsx

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import React, { useContext, useEffect } from "react";
1+
import React, { useEffect } from "react";
22
import classnames from "classnames";
3-
import { NotificationContext } from "context/notification";
43
import Button from "components/buttons/Button/Button";
54
import Icon from "components/Icon/Icon";
65

@@ -32,16 +31,13 @@ const Modal = ({
3231
isLoading = false,
3332
className,
3433
}: IModalProps): JSX.Element => {
35-
const { hideFlash } = useContext(NotificationContext);
36-
3734
useEffect(() => {
3835
const closeWithEscapeKey = (e: KeyboardEvent) => {
3936
if (e.key === "Escape") {
4037
onExit();
4138
}
4239
};
4340

44-
hideFlash();
4541
document.addEventListener("keydown", closeWithEscapeKey);
4642

4743
return () => {

0 commit comments

Comments
 (0)