diff --git a/plugins/splunk-on-call/src/components/Incident/IncidentListItem.tsx b/plugins/splunk-on-call/src/components/Incident/IncidentListItem.tsx index 775c491a2b..dd0bdadb6a 100644 --- a/plugins/splunk-on-call/src/components/Incident/IncidentListItem.tsx +++ b/plugins/splunk-on-call/src/components/Incident/IncidentListItem.tsx @@ -95,18 +95,18 @@ const IncidentAction = ({ currentPhase, incidentNames, resolveAction, - aknowledgeAction, + acknowledgeAction, }: { currentPhase: string; incidentNames: string[]; resolveAction: (args: PatchIncidentRequest) => void; - aknowledgeAction: (args: PatchIncidentRequest) => void; + acknowledgeAction: (args: PatchIncidentRequest) => void; }) => { switch (currentPhase) { case 'UNACKED': return ( - aknowledgeAction({ incidentNames })}> + acknowledgeAction({ incidentNames })}> @@ -218,7 +218,7 @@ export const IncidentListItem = ({ incident, onIncidentAction }: Props) => { currentPhase={incident.currentPhase || ''} incidentNames={[incident.incidentNumber]} resolveAction={handleResolveIncident} - aknowledgeAction={handleAcknowledgeIncident} + acknowledgeAction={handleAcknowledgeIncident} />