fix: remove 7 unnecessary as any casts in opencode core (#22840)

This commit is contained in:
Kit Langton
2026-04-16 15:07:02 -04:00
committed by GitHub
parent 9afbdc102c
commit bf4c107829
3 changed files with 9 additions and 11 deletions

View File

@@ -597,7 +597,7 @@ export function Session() {
{
title: conceal() ? "Disable code concealment" : "Enable code concealment",
value: "session.toggle.conceal",
keybind: "messages_toggle_conceal" as any,
keybind: "messages_toggle_conceal",
category: "Session",
onSelect: (dialog) => {
setConceal((prev) => !prev)