From a3430ba848a48f8f9bd2d34aa7f771611397203d Mon Sep 17 00:00:00 2001 From: KaleemNeslit Date: Mon, 9 Dec 2024 14:58:29 +0500 Subject: [PATCH] fixed eslint --- .../components/KnockNotifications/CustomNotificationCell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/commonwealth/client/scripts/views/components/KnockNotifications/CustomNotificationCell.tsx b/packages/commonwealth/client/scripts/views/components/KnockNotifications/CustomNotificationCell.tsx index 7215b4d441a..d9b87118736 100644 --- a/packages/commonwealth/client/scripts/views/components/KnockNotifications/CustomNotificationCell.tsx +++ b/packages/commonwealth/client/scripts/views/components/KnockNotifications/CustomNotificationCell.tsx @@ -5,6 +5,7 @@ import React from 'react'; import { CWText } from '../component_kit/cw_text'; // eslint-disable-next-line react/no-multi-comp +// eslint-disable-next-line @typescript-eslint/no-explicit-any const CustomNotificationCell = ({ item }: any) => { return (
@@ -25,5 +26,4 @@ const CustomNotificationCell = ({ item }: any) => {
); }; - export default CustomNotificationCell;