chore(deps): bump all (#294)

This commit is contained in:
Julian Tölle 2023-09-16 13:02:19 +02:00 committed by GitHub
parent 1979d924c9
commit 38cf2ff549
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
69 changed files with 4681 additions and 3804 deletions

View file

@ -1,7 +1,7 @@
export const getPaginationItems = (
currentPage: number,
totalPages: number,
delta: number = 1
delta: number = 1,
): (number | null)[] => {
const left = currentPage - delta;
const right = currentPage + delta;

View file

@ -5,7 +5,7 @@ export const qs = (parameters: QueryParameters): string => {
const queryParams = new URLSearchParams();
Object.entries(parameters).forEach(([key, value]) =>
queryParams.append(key, value)
queryParams.append(key, value),
);
return queryParams.toString();