Simplify notification

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

View File

@ -51,7 +51,7 @@
notifications.error("Error exporting the app.")
}
} catch (error) {
notifications.error(error.message ?? "Error downloading the exported app")
notifications.error(error.message || "Error downloading the exported app")
}
}
</script>