From ba95a65219c54b81fa0183338101611eda83e7ef Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Sun, 2 Aug 2026 13:14:50 +0800 Subject: [PATCH] fix: correct occoured to occurred typo in ZIP error message Fix user-facing snackbar error message shown when ZIP file creation fails. js/savefile.js line 300: 'Error occoured' -> 'Error occurred' --- js/savefile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/savefile.js b/js/savefile.js index 9d0878e..6889c74 100644 --- a/js/savefile.js +++ b/js/savefile.js @@ -297,7 +297,7 @@ function yoloDataRendering() { analytics_reportExportType("yoloV5PyTorch"); }) .catch(function (error) { - showSnackBar("Error occoured while creating ZIP file"); + showSnackBar("Error occurred while creating ZIP file"); console.error("Error creating ZIP file:", error); }); }