tui: disable tips display in home route

thinking-toggle-wip
Dax Raad 2025-12-24 14:20:29 -05:00 committed by Aiden Cline
parent b4d25efbb9
commit 19c1ed11b8
1 changed files with 1 additions and 0 deletions

View File

@ -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()