From 38abeb3b494b859929a5ff283d57179b3fd5b0cb Mon Sep 17 00:00:00 2001 From: Tom Boullay Date: Mon, 27 Apr 2026 11:20:59 +0200 Subject: [PATCH] fix: format & lint --- src/utils/debug/scene/DebugCameraControls.tsx | 5 ++++- src/world/World.tsx | 5 +---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/utils/debug/scene/DebugCameraControls.tsx b/src/utils/debug/scene/DebugCameraControls.tsx index 0e6cd39..9fc5f99 100644 --- a/src/utils/debug/scene/DebugCameraControls.tsx +++ b/src/utils/debug/scene/DebugCameraControls.tsx @@ -4,7 +4,10 @@ import { DEBUG_CAMERA_MAX_DISTANCE, DEBUG_CAMERA_MIN_DISTANCE, } from "@/data/debugConfig"; -import { PLAYER_EYE_HEIGHT, PLAYER_SPAWN_POSITION_GAME } from "@/data/playerConfig"; +import { + PLAYER_EYE_HEIGHT, + PLAYER_SPAWN_POSITION_GAME, +} from "@/data/playerConfig"; const DEBUG_CAMERA_TARGET = [ PLAYER_SPAWN_POSITION_GAME[0], diff --git a/src/world/World.tsx b/src/world/World.tsx index aec06e3..af7c39f 100644 --- a/src/world/World.tsx +++ b/src/world/World.tsx @@ -37,10 +37,7 @@ export function World(): React.JSX.Element { )} {cameraMode !== "debug" ? ( - + ) : null} );