From 999ee2e24393d81ae8a3f4f657a6ff8e833cc065 Mon Sep 17 00:00:00 2001 From: Daniel Bisgrove Date: Mon, 28 Oct 2024 11:37:22 -0400 Subject: [PATCH] fixup! Fix appeal contact row click to prevent it opening contact when clicking on action icons. --- .../Tool/Appeal/List/ContactRow/ContactRow.test.tsx | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/components/Tool/Appeal/List/ContactRow/ContactRow.test.tsx b/src/components/Tool/Appeal/List/ContactRow/ContactRow.test.tsx index 740576bbd2..836f4c427a 100644 --- a/src/components/Tool/Appeal/List/ContactRow/ContactRow.test.tsx +++ b/src/components/Tool/Appeal/List/ContactRow/ContactRow.test.tsx @@ -20,17 +20,6 @@ import { defaultExcludedContacts } from '../../Shared/useGetExcludedReasons/useG import { ContactRow } from './ContactRow'; import { defaultContact } from './ContactRowMock'; -const mockEnqueue = jest.fn(); -jest.mock('notistack', () => ({ - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore - ...jest.requireActual('notistack'), - useSnackbar: () => { - return { - enqueueSnackbar: mockEnqueue, - }; - }, -})); const accountListId = 'account-list-1'; const appealId = 'appealId';