Kaynağa Gözat

chore: generate

opencode-agent[bot] 1 hafta önce
ebeveyn
işleme
9ab3029947
1 değiştirilmiş dosya ile 8 ekleme ve 8 silme
  1. 8 8
      packages/merman/src/state/routing.ts

+ 8 - 8
packages/merman/src/state/routing.ts

@@ -208,10 +208,10 @@ function verticalCorridorCrossesUnrelatedState(
     const bound = bounds.get(state.id)
     return Boolean(
       bound &&
-      from.centerX >= bound.left &&
-      from.centerX < bound.left + bound.width &&
-      top < bound.top + bound.height &&
-      bottom >= bound.top,
+        from.centerX >= bound.left &&
+        from.centerX < bound.left + bound.width &&
+        top < bound.top + bound.height &&
+        bottom >= bound.top,
     )
   })
 }
@@ -263,10 +263,10 @@ function bottomApproachX(
       const bound = bounds.get(state.id)
       return Boolean(
         bound &&
-        x >= bound.left &&
-        x < bound.left + bound.width &&
-        top < bound.top + bound.height &&
-        bottom >= bound.top,
+          x >= bound.left &&
+          x < bound.left + bound.width &&
+          top < bound.top + bound.height &&
+          bottom >= bound.top,
       )
     })