Skip to content

Commit d6c16c1

Browse files
committed
fix: update GLOBAL_TAG value to an empty string in HashnodeCard and RedditCard components
1 parent 13fa875 commit d6c16c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/features/cards/components/hashnodeCard/HashnodeCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { MemoizedCardHeader } from '../CardHeader'
1111
import { MemoizedCardSettings } from '../CardSettings'
1212
import ArticleItem from './ArticleItem'
1313

14-
const GLOBAL_TAG = { label: 'Global', value: 'programming' }
14+
const GLOBAL_TAG = { label: 'Global', value: '' }
1515

1616
export function HashnodeCard(props: CardPropsType) {
1717
const { meta } = props

src/features/cards/components/redditCard/RedditCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { MemoizedCardHeader } from '../CardHeader'
1111
import { MemoizedCardSettings } from '../CardSettings'
1212
import ArticleItem from './ArticleItem'
1313

14-
const GLOBAL_TAG = { label: 'Global', value: 'global' }
14+
const GLOBAL_TAG = { label: 'Global', value: '' }
1515

1616
export function RedditCard(props: CardPropsType) {
1717
const { meta } = props

0 commit comments

Comments
 (0)