Make debug=0 URL param disable debug logs

This commit is contained in:
Simon Ser 2025-01-19 21:11:58 +01:00
parent e4088304bf
commit 9299f79bab
2 changed files with 3 additions and 1 deletions

View file

@ -323,6 +323,8 @@ export default class App extends Component {
}
if (queryParams.debug === "1") {
this.debug = true;
} else if (queryParams.debug === "0") {
this.debug = false;
}
if (window.location.hash) {