Remove dead isProfileCommand code (#43345)

Fix for
https://github.com/fleetdm/fleet/pull/42126#discussion_r3059648066
This commit is contained in:
Ian Littman 2026-04-09 13:04:08 -05:00 committed by GitHub
parent de35a0f9aa
commit 0bf48d39c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,9 +18,6 @@ interface ICommandItemProps {
onShowDetails: ShowCommandDetailsHandler;
}
const isProfileCommand = (requestType: string): boolean =>
requestType === "InstallProfile" || requestType === "RemoveProfile";
const getStatusText = (command: ICommand): string => {
const { command_status, status } = command;