fix: Add big error handling for action details view

This commit is contained in:
jamesread
2025-10-30 00:24:50 +00:00
parent 19c3b67cdd
commit e1db1e7be5

View File

@@ -152,6 +152,7 @@ async function fetchAction() {
actionTitle.value = action.value?.title || 'Unknown Action'
} catch (err) {
console.error('Failed to fetch action:', err)
window.showBigError('fetch-action', 'getting action details', err, false)
}
}