1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

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

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)})`
}