Skip to content

Commit

Permalink
fix(core): 馃悰 remove leftover console log
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair3149 committed Apr 25, 2024
1 parent 56046d7 commit c2aa796
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions resources/skins.citizen.scripts/inline.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ window.clientPrefs = () => {
if ( storage ) {
// TODO: Just use array for localStorage
storage.split( ',' ).forEach( function ( pref ) {
console.log( pref );
className = className.replace(
// eslint-disable-next-line security/detect-non-literal-regexp
new RegExp( '(^| )' + pref.replace( /-clientpref-\w+$|[^\w-]+/g, '' ) + '-clientpref-\\w+( |$)' ),
Expand All @@ -86,7 +85,6 @@ window.clientPrefs = () => {
className += ` ${ LEGACY_PREFIX }${ matchedKey }`;
}
}
console.log( className );
} );
document.documentElement.className = className;
}
Expand Down

0 comments on commit c2aa796

Please sign in to comment.