Correction following test

This commit is contained in:
GRL 2021-08-19 11:17:46 +02:00
parent d6bd883c94
commit 2ebf05f7d6
9 changed files with 52 additions and 43 deletions

View file

@ -1,3 +1,8 @@
import { writable } from "svelte/store";
export const showReportScreenStore = writable<{ userId: number; userName: string } | null>(null);
export const userReportEmpty = {
userId: 0,
userName: "Empty",
};
export const showReportScreenStore = writable<{ userId: number; userName: string }>(userReportEmpty);