fix: remove unused overview token prop

This commit is contained in:
Philipp
2026-06-12 11:02:00 +02:00
parent b554206bbf
commit 1bfc46f03b
+2 -4
View File
@@ -315,7 +315,7 @@ function ViewPanel({
return (
<section className="panel view-panel">
{activeView === "overview" && (
<Overview tenantID={tenantID} projectID={projectID} token={token} />
<Overview tenantID={tenantID} projectID={projectID} />
)}
{activeView === "vms" && (
<VMView
@@ -340,11 +340,9 @@ function ViewPanel({
function Overview({
tenantID,
projectID,
token,
}: {
tenantID: string;
projectID: string;
token: string;
}) {
return (
<>
@@ -406,4 +404,4 @@ ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>
);
);