Skip to content

Commit 693c46f

Browse files
committed
chore: changes from feedback
1 parent d5493be commit 693c46f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/compass-assistant/src/components/confirmation-message.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe('ConfirmationMessage', function () {
2121
});
2222

2323
describe('pending state', function () {
24-
it('shows confirm and cancel buttons when both handlers are provided', function () {
24+
it('shows confirm and cancel buttons', function () {
2525
const onConfirm = sinon.stub();
2626
const onReject = sinon.stub();
2727

packages/compass-assistant/src/components/confirmation-message.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ interface ConfirmationMessageProps {
4646
state: 'confirmed' | 'rejected' | 'pending';
4747
title: string;
4848
description: string;
49-
messageBody?: string;
5049
onConfirm: () => void;
5150
onReject: () => void;
5251
}

0 commit comments

Comments
 (0)