fix: Fix build errors

This commit is contained in:
LukeGus
2025-10-14 21:17:33 -05:00
parent 1e5b448da7
commit 8a88c9af0b
3 changed files with 8 additions and 7 deletions

View File

@@ -1,7 +1,6 @@
// ============================================================================
// CENTRAL TYPE DEFINITIONS
// ============================================================================
// This file contains all shared interfaces and types used across the application
import type { Client } from "ssh2";
import type { Request } from "express";
@@ -265,7 +264,7 @@ export interface TabContextTab {
| "user_profile";
title: string;
hostConfig?: SSHHost;
terminalRef?: React.RefObject<TerminalHandle>;
terminalRef?: any;
}
// ============================================================================