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

This commit is contained in:
adamelmore 2026-01-26 09:29:03 -06:00
commit 7c34319b19
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
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]