lint
All checks were successful
delpoy / build-and-deploy (push) Successful in 47s

This commit is contained in:
2023-11-30 23:25:04 +01:00
parent b932d88990
commit fc6fc097e9
7 changed files with 12 additions and 11 deletions

View File

@ -7,6 +7,7 @@
import Select from '$lib/components/Input/Select.svelte';
import Input from '$lib/components/Input/Input.svelte';
import Textarea from '$lib/components/Input/Textarea.svelte';
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { reportCount } from '$lib/stores';
import HeaderBar from './HeaderBar.svelte';
import { MagnifyingGlass, Plus, Share } from 'svelte-heros-v2';
@ -19,6 +20,7 @@
export let data: PageData;
let currentPageReports: (typeof Report.prototype.dataValues)[] = [];
// eslint-disable-next-line @typescript-eslint/no-explicit-any
let currentPageReportsRequest: Promise<any> = Promise.resolve();
let reportsPerPage = 50;
let reportPage = 0;