fix: remove unused overview token prop

This commit is contained in:
Philipp
2026-06-12 11:02:00 +02:00
parent b554206bbf
commit 1bfc46f03b
+1 -3
View File
@@ -315,7 +315,7 @@ function ViewPanel({
return ( return (
<section className="panel view-panel"> <section className="panel view-panel">
{activeView === "overview" && ( {activeView === "overview" && (
<Overview tenantID={tenantID} projectID={projectID} token={token} /> <Overview tenantID={tenantID} projectID={projectID} />
)} )}
{activeView === "vms" && ( {activeView === "vms" && (
<VMView <VMView
@@ -340,11 +340,9 @@ function ViewPanel({
function Overview({ function Overview({
tenantID, tenantID,
projectID, projectID,
token,
}: { }: {
tenantID: string; tenantID: string;
projectID: string; projectID: string;
token: string;
}) { }) {
return ( return (
<> <>