ignore errored types

This commit is contained in:
Hayden 2023-11-15 15:08:18 -06:00
parent 4e57feb7c0
commit cb60f3d488
No known key found for this signature in database
GPG key ID: 17CF79474E257545
2 changed files with 3 additions and 1 deletions

View file

@ -22,7 +22,7 @@
get() {
return state.value[nodeHash.value] ?? false;
},
set(value) {
set(value: boolean) {
state.value[nodeHash.value] = value;
},
});

View file

@ -366,11 +366,13 @@
});
function openDialog(img: Photo) {
// @ts-ignore - I don't know why this is happening
refDialog.value?.showModal();
dialoged.src = img.src;
}
function closeDialog() {
// @ts-ignore - I don't know why this is happening
refDialog.value?.close();
}