diff --git a/src/components/base/base-notice.tsx b/src/components/base/base-notice.tsx
index 7729ba3..33d7aff 100644
--- a/src/components/base/base-notice.tsx
+++ b/src/components/base/base-notice.tsx
@@ -86,7 +86,9 @@ const Notice: NoticeInstance = (props) => {
 };
 
 (["info", "error", "success"] as const).forEach((type) => {
-  Notice[type] = (message, duration) => Notice({ type, message, duration });
+  Notice[type] = (message, duration) => {
+    setTimeout(() => Notice({ type, message, duration }), 0);
+  };
 });
 
 export default Notice;