Skip to content

Commit

Permalink
Fix notifications pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandarBoljanovic committed Nov 20, 2023
1 parent 1afd9f1 commit a0a1ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/js/NotificationsController.js
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ if (!window.AdyenFE) {
]);
tableWrapper.append(spinnerWrapper);

api.get(`${configuration[`get${type}EventsNotifications`]}?page=${page}&limit=${limit}`, () => null)
api.get(`${configuration[`get${type}EventsNotifications`]}&page=${page}&limit=${limit}`, () => null)
.then((newPage) => {
nextPageAvailable = newPage?.nextPageAvailable;

Expand Down

0 comments on commit a0a1ff4

Please sign in to comment.