Fix View Options popup not responding to clicks

Remove duplicate popup rendering from render_vertical_tabs_panel.
The popup was rendered both inside the panel's stack AND at the
workspace level in a Dismiss overlay, causing event dispatch conflicts
due to shared MouseStateHandle instances between the two identical
popup trees.
This commit is contained in:
Ryan Ward
2026-06-23 15:28:59 -05:00
parent 5ea378a38d
commit 148c97eab1
49 changed files with 1507 additions and 419 deletions
@@ -0,0 +1,21 @@
{
"name": "build-and-deploy-hermes",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsx src/index.tsx",
"start": "tsx src/index.tsx"
},
"dependencies": {
"ink": "^5.1.0",
"ink-spinner": "^5.0.0",
"react": "^18.3.1"
},
"devDependencies": {
"@types/node": "^26.0.0",
"@types/react": "^18.3.12",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}