diff --git a/modules/notifications/NotificationsTable/index.tsx b/modules/notifications/NotificationsTable/index.tsx
index 7fa0593a..443d7679 100644
--- a/modules/notifications/NotificationsTable/index.tsx
+++ b/modules/notifications/NotificationsTable/index.tsx
@@ -41,25 +41,26 @@ interface NotificationsTableProps {
export const NotificationsTable = ({
notifications,
-}: NotificationsTableProps) => {
- return (
- (
-
-
-
-
- )}
- >
- {(props) => (
-
- {(notification) => }
-
- )}
-
- )
-}
+}: NotificationsTableProps) => (
+ (
+
+
+
+
+ )}
+ initialState={{
+ columnFilters: [{ id: columnIds.isRead, value: false }],
+ }}
+ >
+ {(props) => (
+
+ {(notification) => }
+
+ )}
+
+)