fix(core): avoid logging crash user data #7870 (#8128)

Co-authored-by: cocojojo5213 <cocojojo5213@users.noreply.github.com>
This commit is contained in:
felix bear 2026-06-08 18:27:23 +09:00 committed by GitHub
parent 18823a68f5
commit 2f4f9ebdb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,7 +78,6 @@ export const logAdvancedStacktrace = (
}
const githubIssueLinks = document.getElementsByClassName('github-issue-urlX');
Log.log(githubIssueLinks);
if (githubIssueLinks) {
const errEscaped = _cleanHtml(getErrorTxt(origErr));
@ -166,8 +165,6 @@ export const createErrorAlert = (
});
innerWrapper.append(btnReload);
Log.log(userData);
if (userData) {
const btnExport = document.createElement('BUTTON');
btnExport.innerText = 'Export data';