remove console logs

This commit is contained in:
Viktor Rådberg
2023-12-27 19:57:16 +01:00
parent 4ff7f67484
commit e8528f46ae
3 changed files with 0 additions and 3 deletions

View File

@@ -151,7 +151,6 @@ const Health = ({
const textContainer = textContainerRef.current;
const resizeObserver = new ResizeObserver(() => {
const calcFontSize = calculateFontSize(textContainer);
console.log(calcFontSize);
setFontSize(calcFontSize);
});

View File

@@ -289,7 +289,6 @@ const Start = () => {
numberOfPlayers={playerOptions.numberOfPlayers}
selectedOrientation={playerOptions.orientation}
onChange={(orientation) => {
console.log('orientation', { orientation });
setPlayerOptions({
...playerOptions,
orientation,

View File

@@ -100,7 +100,6 @@ export const GlobalSettingsProvider = ({
};
const toggleWakeLock = async () => {
console.log('on press', active);
if (active) {
setSettings({ ...settings, keepAwake: false });
release();