Build error fixes

This commit is contained in:
LukeGus
2025-08-14 01:28:47 -05:00
parent 81d1db09e4
commit 1b076cc612
5 changed files with 187 additions and 27 deletions

View File

@@ -1,5 +1,5 @@
import React, { useState, useEffect } from "react"
import { Sidebar } from "@/ui/Navigation/Sidebar.tsx"
import { LeftSidebar } from "@/ui/Navigation/LeftSidebar.tsx"
import { Homepage } from "@/ui/Homepage/Homepage.tsx"
import { Terminal } from "@/ui/SSH/Terminal/Terminal.tsx"
import { SSHTunnel } from "@/ui/SSH/Tunnel/SSHTunnel.tsx"
@@ -71,7 +71,7 @@ function App() {
}
return (
<Sidebar
<LeftSidebar
onSelectView={handleSelectView}
disabled={!isAuthenticated || authLoading}
isAdmin={isAdmin}
@@ -102,7 +102,7 @@ function App() {
<ConfigEditor onSelectView={handleSelectView} />
</div>
)}
</Sidebar>
</LeftSidebar>
)
}