소스 검색

fix: console prefix in generic error dialog

Sv443 7 달 전
부모
커밋
8883a48c3b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)}`,
   });
 }