Ver código fonte

tui: disable tips display in home route

Dax Raad 1 mês atrás
pai
commit
607d8aafb7
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1 0
      packages/opencode/src/cli/cmd/tui/routes/home.tsx

+ 1 - 0
packages/opencode/src/cli/cmd/tui/routes/home.tsx

@@ -36,6 +36,7 @@ export function Home() {
   const isFirstTimeUser = createMemo(() => sync.data.session.length === 0)
   const tipsHidden = createMemo(() => kv.get("tips_hidden", false))
   const showTips = createMemo(() => {
+    return false
     // Don't show tips for first-time users
     if (isFirstTimeUser()) return false
     return !tipsHidden()