Skip to content

Commit d800729

Browse files
Ni-2alsakhaev
authored andcommitted
feat: increase limit for receiving items from 10 to 100
1 parent 711ba48 commit d800729

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

apps/xen-tg-app/src/components/History.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const History = () => {
3636
queryKey: ['history'],
3737
queryFn: queryFn('getUsageHistory', {
3838
offset: 0,
39-
limit: 10,
39+
limit: 100,
4040
}),
4141
})
4242

apps/xen-tg-app/src/components/Memories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const Memories = () => {
6060
queryKey: ['memories'],
6161
queryFn: queryFn('getMemories', {
6262
offset: 0,
63-
limit: 10,
63+
limit: 100,
6464
}),
6565
})
6666

apps/xen-tg-app/src/components/NewsMonitor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const NewsMonitor = () => {
7272
queryKey: ['subscriptions'],
7373
queryFn: queryFn('getSubscriptions', {
7474
offset: 0,
75-
limit: 10,
75+
limit: 100,
7676
}),
7777
})
7878

apps/xen-tg-app/src/components/Warnings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const Warnings = () => {
6565
queryKey: ['warnings'],
6666
queryFn: queryFn('getWarnings', {
6767
offset: 0,
68-
limit: 10,
68+
limit: 100,
6969
}),
7070
})
7171

0 commit comments

Comments
 (0)