Skip to content

Commit 3c67df8

Browse files
committed
fix(frontend): drop the redundant boolean annotation on showContextBudget
`no-inferrable-types` fails the TypeScript lint job on release/v0.105.9. Claude-Session: https://claude.ai/code/session_01LMcS17kn4KEdoWucKttuzD
1 parent 9da39b4 commit 3c67df8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

web/oss/src/components/AgentChatSlice/AgentConversation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ const AgentConversation = ({
758758
)
759759
// Feature flag: the context-budget meter is hidden from the composer for now. The
760760
// component and its logic stay wired up; flip this to `true` to bring the UI back.
761-
const showContextBudget: boolean = false
761+
const showContextBudget = false
762762

763763
// ── Playground-native onboarding ──────────────────────────────────────────
764764
// This chat panel IS the onboarding surface while the agent is ephemeral: the empty state shows the

0 commit comments

Comments
 (0)