fix: remove unused overview token prop
This commit is contained in:
@@ -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 (
|
||||
<>
|
||||
|
||||
Reference in New Issue
Block a user