diff options
| author | Miqdad <ahmadmiqdad27@gmail.com> | 2025-11-18 13:48:50 +0700 |
|---|---|---|
| committer | Miqdad <ahmadmiqdad27@gmail.com> | 2025-11-18 13:48:50 +0700 |
| commit | b2a9815e944ee7446d5fdd543f86f6cb0b7e9b3e (patch) | |
| tree | d232a9fca9ca66d4877e7a11a33e3bc421c3ecd8 /src/lib/brand | |
| parent | 2aa677a1dbec1e24e7f6c963184acdd3e60a142a (diff) | |
<Miqdad> fix solr query & remove console log
Diffstat (limited to 'src/lib/brand')
| -rw-r--r-- | src/lib/brand/components/MediaCard.jsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/brand/components/MediaCard.jsx b/src/lib/brand/components/MediaCard.jsx index 4a298e15..4de6b9ef 100644 --- a/src/lib/brand/components/MediaCard.jsx +++ b/src/lib/brand/components/MediaCard.jsx @@ -4,9 +4,9 @@ import useDevice from '@/core/hooks/useDevice'; import { createSlug } from '@/core/utils/slug'; const MediaCard = ({ media }) => { - const { isMobile } = useDevice(); + const { isMobile } = useDevice(); - console.log("Media logo:", media); + // console.log("Media logo:", media); return ( <Link @@ -25,11 +25,11 @@ const MediaCard = ({ media }) => { width={500} height={500} quality={85} - className="h-full w-[122px] object-contain object-center" + className='h-full w-[122px] object-contain object-center' /> ) : ( <span - className="text-center" + className='text-center' style={{ fontSize: `${16 - media.name.length * 0.5}px` }} > {media.name} |
