Skip to content

Commit 9a07283

Browse files
committed
chore: error handling fix
1 parent 51801ab commit 9a07283

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/components/view/CardView.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@
354354
transition: null
355355
});
356356
} catch (err) {
357-
console.error(err.err.stack);
357+
console.error(err, err.stack);
358358
}
359359
}
360360
} catch (err) {

app/components/view/DocumentView.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
transition: null
181181
});
182182
} catch (err) {
183-
console.error(err.err.stack);
183+
console.error(err, err.stack);
184184
}
185185
}
186186
} catch (err) {

0 commit comments

Comments
 (0)