Add navigation and hardcoded hosts

This commit is contained in:
LukeGus
2025-09-05 21:37:14 -05:00
parent 40096fedaf
commit 51cced8f83
8 changed files with 293 additions and 32 deletions

View File

@@ -59,13 +59,9 @@ export function TopNavbar({isTopbarOpen, setIsTopbarOpen}: TopNavbarProps): Reac
setSelectedTabIds([]);
};
const handleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
};
const handleKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {
if (selectedTabIds.length === 0) return;
const value = e.currentTarget.value;
let commandToSend = '';
if (e.ctrlKey || e.metaKey) {