From 26c4b2f626df79326625b2c080fd2adf20a2a4d7 Mon Sep 17 00:00:00 2001 From: Hayden Bleasel Date: Mon, 6 Jan 2025 09:47:40 -0500 Subject: [PATCH] Update feed.tsx --- packages/notifications/components/feed.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/notifications/components/feed.tsx b/packages/notifications/components/feed.tsx index ac16c051..19d9490e 100644 --- a/packages/notifications/components/feed.tsx +++ b/packages/notifications/components/feed.tsx @@ -9,7 +9,7 @@ import { useRef, useState } from 'react'; // Required CSS import, unless you're overriding the styling import '@knocklabs/react/dist/index.css'; -export const KnockNotificationFeed = () => { +export const Feed = () => { const [isVisible, setIsVisible] = useState(false); const notifButtonRef = useRef(null);