remove unused agentMode param

Signed-off-by: Robbie Lankford <robert.lankford@grafana.com>
This commit is contained in:
Robbie Lankford 2021-12-05 03:14:20 -06:00
parent 6df47766b2
commit 5fb63c1071
No known key found for this signature in database
GPG Key ID: 54F7F51936239E12
1 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ const StatusWithStatusIndicator = withStatusIndicator(StatusContent);
StatusContent.displayName = 'Status';
const StatusResult: FC<{ fetchPath: string; title: string; agentMode: boolean }> = ({ fetchPath, title, agentMode }) => {
const StatusResult: FC<{ fetchPath: string; title: string }> = ({ fetchPath, title }) => {
const { response, isLoading, error } = useFetch(fetchPath);
return (
<StatusWithStatusIndicator
@ -111,7 +111,7 @@ const Status: FC<{ agentMode: boolean }> = ({ agentMode }) => {
if (agentMode && title === 'Alertmanagers') {
return null;
}
return <StatusResult fetchPath={fetchPath} title={title} agentMode={agentMode} />;
return <StatusResult fetchPath={fetchPath} title={title} />;
})}
</>
);