1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add error logging for deleting all devices

This commit is contained in:
Bill Thornton 2025-01-30 13:28:33 -05:00
parent fd22b8461a
commit 38ffbd06e3

View file

@ -85,6 +85,9 @@ export const Component = () => {
} }
return Promise.resolve(); return Promise.resolve();
})) }))
.catch(err => {
console.error('[DevicesPage] failed deleting all devices', err);
})
.finally(() => { .finally(() => {
onCloseDeleteAllConfirmDialog(); onCloseDeleteAllConfirmDialog();
}); });