Simplify notification

This commit is contained in:
Adria Navarro 2023-06-14 13:48:10 +01:00
parent d507eb487a
commit fbf9b69a6b
1 changed files with 1 additions and 5 deletions

View File

@ -51,11 +51,7 @@
notifications.error("Error exporting the app.")
}
} catch (error) {
let message = "Error downloading the exported app"
if (error.message) {
message += `: ${error.message}`
}
notifications.error("Error downloading the exported app", message)
notifications.error(error.message ?? "Error downloading the exported app")
}
}
</script>