diff --git a/packages/ui-voip/src/ui-kit/getHistoryMessagePayload.spec.ts b/packages/ui-voip/src/ui-kit/getHistoryMessagePayload.spec.ts index d73afafd48a0c..3f66e3b508059 100644 --- a/packages/ui-voip/src/ui-kit/getHistoryMessagePayload.spec.ts +++ b/packages/ui-voip/src/ui-kit/getHistoryMessagePayload.spec.ts @@ -42,7 +42,7 @@ describe('callStateToIcon', () => { it('should return correct icon for "not-answered" state', () => { const result = callStateToIcon('not-answered'); - expect(result).toEqual({ type: 'icon', icon: 'clock', variant: 'danger', framed: true }); + expect(result).toEqual({ type: 'icon', icon: 'phone-question-mark', variant: 'warning', framed: true }); }); it('should return correct icon for "failed" state', () => { @@ -189,7 +189,7 @@ describe('getHistoryMessagePayload', () => { { background: 'default', elements: [ - { type: 'icon', icon: 'clock', variant: 'danger', framed: true }, + { type: 'icon', icon: 'phone-question-mark', variant: 'warning', framed: true }, { type: 'mrkdwn', i18n: { key: 'Call_not_answered_bold' }, text: 'Call not answered' }, ], action: actionObj, diff --git a/packages/ui-voip/src/ui-kit/getHistoryMessagePayload.ts b/packages/ui-voip/src/ui-kit/getHistoryMessagePayload.ts index 918d100dd9c3d..cf9216f6c4443 100644 --- a/packages/ui-voip/src/ui-kit/getHistoryMessagePayload.ts +++ b/packages/ui-voip/src/ui-kit/getHistoryMessagePayload.ts @@ -23,7 +23,7 @@ export const callStateToIcon = (callState: CallHistoryItemState): FrameableIconE case 'ended': return { type: 'icon', icon: 'phone-off', variant: 'secondary', framed: true }; case 'not-answered': - return { type: 'icon', icon: 'clock', variant: 'danger', framed: true }; + return { type: 'icon', icon: 'phone-question-mark', variant: 'warning', framed: true }; case 'failed': case 'error': return { type: 'icon', icon: 'phone-issue', variant: 'danger', framed: true };