From 7233788545bf6a1fca41ac1a0cb5dbfb10b4532b Mon Sep 17 00:00:00 2001 From: SahilDahekar Date: Thu, 12 Dec 2024 17:18:14 +0530 Subject: [PATCH] Fixed lint issues --- components/CommunityEvents.tsx | 2 +- components/Meeting.tsx | 1 - pages/community/events/index.tsx | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/components/CommunityEvents.tsx b/components/CommunityEvents.tsx index 8782e91fbde..868360265b2 100644 --- a/components/CommunityEvents.tsx +++ b/components/CommunityEvents.tsx @@ -42,4 +42,4 @@ const CommunityEvents = () => { ); }; -export default CommunityEvents; \ No newline at end of file +export default CommunityEvents; diff --git a/components/Meeting.tsx b/components/Meeting.tsx index 998e0e817cd..537c154c50d 100644 --- a/components/Meeting.tsx +++ b/components/Meeting.tsx @@ -34,7 +34,6 @@ export default function Meeting({ youtube = '', bg = '' }: MeetingProps) { - const [isClient, setIsClient] = useState(false); useEffect(() => { diff --git a/pages/community/events/index.tsx b/pages/community/events/index.tsx index 01718a2aca6..f0314cb69a6 100644 --- a/pages/community/events/index.tsx +++ b/pages/community/events/index.tsx @@ -1,11 +1,11 @@ /* eslint-disable react/no-unescaped-entities */ import { ArrowRightIcon } from '@heroicons/react/outline'; +import CommunityEvents from '@/components/CommunityEvents'; import { HeadingLevel, HeadingTypeStyle } from '@/types/typography/Heading'; import { ParagraphTypeStyle } from '@/types/typography/Paragraph'; import { makeStaticProps } from '@/utils/getStatic'; -import CommunityEvents from '@/components/CommunityEvents'; import GoogleCalendarButton from '../../../components/buttons/GoogleCalendarButton'; import ICSFileButton from '../../../components/buttons/ICSFileButton'; import GenericLayout from '../../../components/layout/GenericLayout';