Skip to content

Commit

Permalink
Merge pull request #2261 from sarava338/sarava338-2254
Browse files Browse the repository at this point in the history
To fix #2254 Breadcrumbs issue
  • Loading branch information
rupali-codes authored Feb 17, 2024
2 parents 797d62a + e67f464 commit 36dac99
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions components/TopBar/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { FC } from 'react'
import { useRouter } from 'next/router'
import { useTheme } from 'next-themes'
import { RxSlash } from 'react-icons/rx'
import { TiHomeOutline } from 'react-icons/ti'
import HomeIcon from 'assets/icons/svg/HomeIcon.svg'
import { FaInfoCircle } from 'react-icons/fa'
import { IoIosArrowBack } from 'react-icons/io'
import categoryDescriptions from './CategoryDescriptions'
Expand Down Expand Up @@ -49,7 +49,7 @@ export const TopBar: FC<TopBarProps> = ({}) => {
href={'/'}
className="gap-x-2 items-center bg-[#EDEDED] bg-opacity-20 px-[10px] py-[6px] rounded-md cursor-pointer hidden md:flex"
>
<TiHomeOutline />
<HomeIcon className="m-auto fill-text-primary-light dark:fill-text-quaternary" />
<h3>Home</h3>
</Link>
<RxSlash className="hidden md:inline-block" />
Expand Down
2 changes: 1 addition & 1 deletion pages/[category]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SubCategories } from 'types'
import Link from 'next/link'
import AddIcon from 'assets/icons/svg/AddIcon.svg'
import ArrowIcon from 'assets/icons/svg/ArrowIcon.svg'
import BreadCrumbs from 'components/Breadcrumps'
import BreadCrumbs from 'components/Breadcrumbs'
import MessageIcon from 'assets/icons/svg/MessageIcon.svg'
import categoryDescriptions from 'components/TopBar/CategoryDescriptions'

Expand Down

0 comments on commit 36dac99

Please sign in to comment.