Add missing store subscription to fix hard crash if automation error exists

This commit is contained in:
Andrew Kingston 2024-03-19 09:02:14 +00:00
parent 9ee849faf0
commit 872efcf944
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@
}
const automationErrorMessage = appId => {
const app = enrichedApps.find(app => app.devId === appId)
const app = $enrichedApps.find(app => app.devId === appId)
const errors = automationErrors[appId]
return `${app.name} - Automation error (${errorCount(errors)})`
}