From eaea8e936816e89078eeebf4a906a9446955c053 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Fri, 30 Jun 2023 10:55:09 +0900 Subject: [PATCH] refactor: fix typo in notification-center/index.tsx (#2929) --- packages/component/src/components/notification-center/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/component/src/components/notification-center/index.tsx b/packages/component/src/components/notification-center/index.tsx index 1f13d641c6..11e3408e3f 100644 --- a/packages/component/src/components/notification-center/index.tsx +++ b/packages/component/src/components/notification-center/index.tsx @@ -91,7 +91,7 @@ function NotificationCard(props: NotificationCardProps): ReactElement { const pointerStartYRef = useRef(null); const notificationsHeightBefore = useMemo(() => { return heights.reduce((prev, curr, reducerIndex) => { - // Calculate offset up untill current notification + // Calculate offset up until current notification if (reducerIndex >= heightIndex) { return prev; }