From 9849c76f726f8a52e7e2ced17a10568991e5d258 Mon Sep 17 00:00:00 2001 From: yangwenkai123 <57821926+yangwenkai123@users.noreply.github.com> Date: Thu, 8 Apr 2021 17:09:34 +0800 Subject: [PATCH] fix(Notify): Type 'Timeout' is not assignable to type 'number' (#8477) Co-authored-by: yangwk --- src/notify/function-call.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notify/function-call.tsx b/src/notify/function-call.tsx index e01fef390..e35241221 100644 --- a/src/notify/function-call.tsx +++ b/src/notify/function-call.tsx @@ -59,7 +59,7 @@ function Notify(options: NotifyMessage | NotifyOptions) { clearTimeout(timer); if (options.duration! > 0) { - timer = setTimeout(Notify.clear, options.duration); + timer = window.setTimeout(Notify.clear, options.duration); } return instance;