Set Notifications page limit to 100

This commit is contained in:
Bojan Mojsilovic 2023-12-07 14:53:57 +01:00
parent 0c818592de
commit f1ae57a1be
2 changed files with 1 additions and 2 deletions

View File

@ -7,7 +7,7 @@ export const getNotifications = (
pubkey: string | undefined,
subid: string,
since = 0,
limit = 1000,
limit = 100,
) => {
if (!pubkey) {
return;

View File

@ -4,7 +4,6 @@ import { nip19 } from 'nostr-tools';
import { Component, createEffect, createMemo, createSignal, For, onCleanup, Show } from 'solid-js';
import { createStore } from 'solid-js/store';
import { APP_ID } from '../App';
import Branding from '../components/Branding/Branding';
import Loader from '../components/Loader/Loader';
import NotificationItem from '../components/Notifications/NotificationItem';
import NotificationItem2 from '../components/Notifications/NotificationItem2';