Browse Source

chore: generate

opencode-agent[bot] 1 tuần trước cách đây
mục cha
commit
9ab3029947

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

@@ -208,10 +208,10 @@ function verticalCorridorCrossesUnrelatedState(
     const bound = bounds.get(state.id)
     const bound = bounds.get(state.id)
     return Boolean(
     return Boolean(
       bound &&
       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)
       const bound = bounds.get(state.id)
       return Boolean(
       return Boolean(
         bound &&
         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,
       )
       )
     })
     })