Ver Fonte

fix: console prefix in generic error dialog

Sv443 há 7 meses atrás
pai
commit
82dc19a4ec
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/utils/logging.ts

+ 1 - 1
src/utils/logging.ts

@@ -74,7 +74,7 @@ function getErrorDialog(errName: string, args: unknown[]) {
     },
     body: `\
 ${args.length > 0 ? args.join(" ") : t("generic_error_dialog_message")}  
-${t("generic_error_dialog_open_console_note", consPrefixDbg, packageJson.bugs.url)}`,
+${t("generic_error_dialog_open_console_note", consPrefix, packageJson.bugs.url)}`,
   });
 }