removed unused imports

This commit is contained in:
Anton Tranelis 2025-04-14 22:29:16 +01:00
parent 2e1452b432
commit 4722281ebc
2 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,4 @@
import ChevronRightIcon from '@heroicons/react/24/outline/ChevronRightIcon'
import { useState, useEffect } from 'react'
import { NavLink, useLocation } from 'react-router-dom'
import { useAppState, useSetAppState } from './hooks/useAppState'

View File

@ -14,10 +14,10 @@ import FlagIcon from '@heroicons/react/24/outline/FlagIcon'
import MagnifyingGlassIcon from '@heroicons/react/24/outline/MagnifyingGlassIcon'
import axios from 'axios'
import { LatLng, LatLngBounds, marker } from 'leaflet'
import { useEffect, useRef, useState } from 'react'
import { useRef, useState } from 'react'
import SVG from 'react-inlinesvg'
import { useMap, useMapEvents } from 'react-leaflet'
import { useLocation, useNavigate } from 'react-router-dom'
import { useNavigate } from 'react-router-dom'
import { useAppState } from '#components/AppShell/hooks/useAppState'
import { useDebounce } from '#components/Map/hooks/useDebounce'