style: apply biome lint fixes after portforward

This commit is contained in:
open-pascal
2026-05-20 00:54:11 +00:00
parent d48be77f5d
commit 3adae8acea
22 changed files with 92 additions and 98 deletions
@@ -9,7 +9,6 @@ import {
useScene,
} from '@pascal-app/core'
import { useFrame } from '@react-three/fiber'
import { useRef } from 'react'
import * as THREE from 'three'
import { mergeGeometries } from 'three/examples/jsm/utils/BufferGeometryUtils.js'
@@ -610,7 +609,7 @@ function generateStairRailingGeometry(
for (let index = 1; index < segmentRailPaths.length; index++) {
const previousPath = segmentRailPaths[index - 1]
const currentPath = segmentRailPaths[index]
if (!(previousPath && currentPath && currentPath.connectFromPrevious)) continue
if (!(previousPath && currentPath?.connectFromPrevious)) continue
if (previousPath.segment.segmentType === 'landing') continue
for (const sidePath of currentPath.sidePaths) {