Change initial notifications pull to be 100

This commit is contained in:
Hank Grabowski 2023-03-14 17:04:22 -04:00
parent 90fe1a6fba
commit fddd30ceb2

View file

@ -46,7 +46,7 @@ class NotificationsManager extends ChangeNotifier {
}
FutureResult<List<UserNotification>, ExecError> updateNotifications() async {
const initialPull = 25;
const initialPull = 100;
final nn = <UserNotification>[];
if (_pm.pages.isEmpty) {
final result = await _pm.initialize(initialPull);