removed universal reading

What would be the point of reading universal files when the files themselves are already fundamentally broken when not opened as a Chrome extension?
This commit is contained in:
buzz-lightsnack-2007 2024-03-24 21:29:00 +08:00
parent 81253231ea
commit 1a3cabbf25
3 changed files with 5 additions and 42 deletions

View file

@ -10,9 +10,9 @@ export function confirm_action() {
let reader = await import(chrome.runtime.getURL("gui/scripts/read.JS"));
// Get the user response.
user_response = confirm(reader.read("localized", `GUI_alert_confirm_action_text`));
user_response = confirm(reader.read(`GUI_alert_confirm_action_text`));
})();
// Return the user response.
return (user_response);
};
};