fix(app): query selector with non-latin chars

This commit is contained in:
adamelmore
2026-01-26 09:29:03 -06:00
parent cd4676171b
commit 7c34319b19
5 changed files with 135 additions and 8 deletions

View File

@@ -1016,7 +1016,7 @@ export default function Page() {
const activeTab = createMemo(() => {
const active = tabs().active()
if (active) return active
if (active) return normalizeTab(active)
if (hasReview()) return "review"
const first = openedTabs()[0]