We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b26500 commit 8fedb49Copy full SHA for 8fedb49
1 file changed
packages/app/src/Pages/Notifications/Notifications.tsx
@@ -58,6 +58,9 @@ function FilterIcon({
58
59
export default function NotificationsPage({ onClick }: { onClick?: (link: NostrLink) => void }) {
60
const login = useLogin()
61
+ const { isMuted } = useModeration()
62
+ const [limit, setLimit] = useState(100)
63
+ const [filter, setFilter] = useState(NotificationSummaryFilter.All)
64
65
useEffect(() => {
66
markNotificationsRead(LoginStore.snapshot())
0 commit comments