From 690c8e241fbd873e56236f615d47d61baf70dfb9 Mon Sep 17 00:00:00 2001 From: Nathan Franklin Date: Thu, 13 Feb 2025 09:42:42 -0600 Subject: [PATCH] Remove unused imports --- .../components/ManageMapProjectPanel/ManageMapProjectPanel.tsx | 2 +- react/src/hooks/notifications/useGeoapiNotificationsPolling.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/react/src/components/ManageMapProjectPanel/ManageMapProjectPanel.tsx b/react/src/components/ManageMapProjectPanel/ManageMapProjectPanel.tsx index c0567db4..9c0e0b6a 100644 --- a/react/src/components/ManageMapProjectPanel/ManageMapProjectPanel.tsx +++ b/react/src/components/ManageMapProjectPanel/ManageMapProjectPanel.tsx @@ -1,7 +1,7 @@ import React, { useState } from 'react'; import styles from './ManageMapProjectPanel.module.css'; import type { TabsProps } from 'antd'; -import { Flex, Tabs, notification, Card } from 'antd'; +import { Flex, Tabs, Card } from 'antd'; import { Project, ProjectRequest } from '@hazmapper/types'; import MapTabContent from './MapTabContent'; import MembersTabContent from './MembersTabContent'; diff --git a/react/src/hooks/notifications/useGeoapiNotificationsPolling.ts b/react/src/hooks/notifications/useGeoapiNotificationsPolling.ts index d98d5134..6e3eecf4 100644 --- a/react/src/hooks/notifications/useGeoapiNotificationsPolling.ts +++ b/react/src/hooks/notifications/useGeoapiNotificationsPolling.ts @@ -1,4 +1,4 @@ -import React, { useEffect } from 'react'; +import { useEffect } from 'react'; import { useQueryClient } from '@tanstack/react-query'; import { Notification } from '@hazmapper/types'; import { useGet } from '@hazmapper/requests';