From 0764b497018fb2c54b3c2602b1778a6610e41587 Mon Sep 17 00:00:00 2001 From: Clement Date: Sat, 28 Jun 2025 18:01:48 +0700 Subject: [PATCH] fix(docs): correct the method name of notification provider --- documentation/docs/notification/notification-provider/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/notification/notification-provider/index.md b/documentation/docs/notification/notification-provider/index.md index 8893b783f41ff..445d899062a47 100644 --- a/documentation/docs/notification/notification-provider/index.md +++ b/documentation/docs/notification/notification-provider/index.md @@ -10,7 +10,7 @@ A `notificationProvider` must include following methods: ```tsx const notificationProvider = { - show: () => {}, + open: () => {}, close: () => {}, }; ```