chore(tui): drop unreachable return + prettier pass
- createGatewayEventHandler: remove dead `return` after a block that always returns (tool.complete case). The inner block exits via both branches so the outer statement was never reachable. Was pre-existing on main; fixed here because it was the only thing blocking `npm run fix` on this branch. - agentsOverlay + ops: prettier reformatting. `npm run fix` / `npm run type-check` / `npm test` all clean.
This commit is contained in:
@@ -206,7 +206,6 @@ function GanttStrip({
|
||||
now: number
|
||||
t: Theme
|
||||
}) {
|
||||
|
||||
const spans = flatNodes
|
||||
.map((node, idx) => {
|
||||
const started = node.item.startedAt ?? now
|
||||
@@ -273,7 +272,6 @@ function GanttStrip({
|
||||
</Text>
|
||||
|
||||
{shown.map(({ endAt, idx, node, startAt }) => {
|
||||
|
||||
const active = idx === cursor
|
||||
const { color } = statusGlyph(node.item, t)
|
||||
const accent = active ? t.color.amber : t.color.dim
|
||||
|
||||
Reference in New Issue
Block a user