Skip to content

Commit

Permalink
removing unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sumeet-srknec committed Oct 7, 2024
1 parent dd4d4c0 commit c21423d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/shared/ControlPanel.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import classNames from 'classnames'
import React, { useEffect } from 'react'
import React from 'react'
import { AiOutlinePlaySquare } from 'react-icons/ai'
import { BsDot } from 'react-icons/bs'
import { CgMiniPlayer } from 'react-icons/cg'
Expand Down
7 changes: 3 additions & 4 deletions frontend/src/components/shared/Navigation.jsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import { Popover, PopoverButton, PopoverPanel } from '@headlessui/react'
import classNames from 'classnames'
import React, { useState } from 'react'
import { FaBars, FaListUl, FaPlay } from 'react-icons/fa6'
import { FaListUl, FaPlay } from 'react-icons/fa6'
import { HiCheck, HiSearch } from 'react-icons/hi'
import { HiArrowRight, HiBars2, HiMiniBars3, HiPlus } from 'react-icons/hi2'
import { IoGridOutline } from 'react-icons/io5'
import { HiArrowRight, HiPlus } from 'react-icons/hi2'
import { RiPushpinFill } from 'react-icons/ri'
import { VscLibrary } from 'react-icons/vsc'
import SpotButton from './SpotButton'
import { fetchMusicContent, fetchSortOptions, fetchTypes, fetchViewOptions } from '../service/DataService'
import SpotButton from './SpotButton'

function Navigation() {
const [navClosed, setNavClosed] = useState(false)
Expand Down

0 comments on commit c21423d

Please sign in to comment.