mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
remove timeout
This commit is contained in:
@@ -6,7 +6,6 @@ import * as Sentry from "@sentry/react";
|
||||
const ErrorMessage: React.FC = () => {
|
||||
const { error, setError, humanMessage } = useError();
|
||||
const [isVisible, setIsVisible] = useState<boolean>(false);
|
||||
const [timeoutId, setTimeoutId] = useState<NodeJS.Timeout>();
|
||||
|
||||
// Setup Shortcuts
|
||||
useEffect(() => {
|
||||
@@ -39,27 +38,12 @@ const ErrorMessage: React.FC = () => {
|
||||
}
|
||||
}, [error]);
|
||||
|
||||
useEffect(() => {
|
||||
if (isVisible) {
|
||||
setTimeoutId(
|
||||
setTimeout(() => {
|
||||
setIsVisible(false);
|
||||
setTimeoutId(undefined);
|
||||
}, 30000),
|
||||
);
|
||||
}
|
||||
if (!isVisible && timeoutId) {
|
||||
clearTimeout(timeoutId);
|
||||
}
|
||||
}, [isVisible]);
|
||||
|
||||
if (!isVisible || !humanMessage) return null;
|
||||
|
||||
return (
|
||||
<button
|
||||
onClick={() => {
|
||||
setIsVisible(false);
|
||||
setIsVisible(false);
|
||||
}}
|
||||
className="max-w-xs z-50 fixed bottom-5 right-5 md:bottom-10 md:right-10 border-solid bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded transition-opacity duration-300 ease-out opacity-100 hover:opacity-80 focus-visible:opacity-80 cursor-pointer transform hover:scale-105 focus-visible:scale-105"
|
||||
role="alert"
|
||||
|
||||
Reference in New Issue
Block a user