mirror of
https://github.com/thegeneralist01/archivr
synced 2026-07-22 11:15:41 +02:00
fix: surface cookie_ext_skipped warning toast in CaptureDialog
This commit is contained in:
parent
52effb60f6
commit
83d4ca57e7
3 changed files with 5 additions and 5 deletions
|
|
@ -214,7 +214,7 @@ export default function CaptureDialog({ open, archiveId, onClose, onCaptured, on
|
|||
// Warn if uBlock was requested but the extension wasn't available
|
||||
try {
|
||||
const notes = updated.notes_json ? JSON.parse(updated.notes_json) : null
|
||||
if (notes?.ublock_skipped) {
|
||||
if (notes?.ublock_skipped || notes?.cookie_ext_skipped) {
|
||||
onToastRef.current(null, locator, 'warning')
|
||||
}
|
||||
} catch {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue