Serialize the error as a string to pass it back to the main view
Conflicts / main (push) Canceled after 0s

This commit is contained in:
Emma
2026-03-11 19:46:12 -04:00
parent a9747ce7a2
commit caba3d96a7
+1 -1
View File
@@ -12,7 +12,7 @@ window.addEventListener('message', (event) => {
} catch (error) {
window.parent.postMessage(JSON.stringify({
id: data.id,
error
error: error.toString()
}), '*')
}
})