Correction following test
This commit is contained in:
parent
d6bd883c94
commit
2ebf05f7d6
9 changed files with 52 additions and 43 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue