From e54020900fa6c7fcb2237d8febd490a50f1f2878 Mon Sep 17 00:00:00 2001 From: vineyardbovines Date: Fri, 17 Apr 2026 10:20:41 -0400 Subject: [PATCH] category icons --- .../gifPicker/components/GifCategoryPills.tsx | 51 ++++++++++--------- 1 file changed, 27 insertions(+), 24 deletions(-) diff --git a/src/features/gifPicker/components/GifCategoryPills.tsx b/src/features/gifPicker/components/GifCategoryPills.tsx index 2ee836a455..888baa946e 100644 --- a/src/features/gifPicker/components/GifCategoryPills.tsx +++ b/src/features/gifPicker/components/GifCategoryPills.tsx @@ -1,4 +1,4 @@ -import {ScrollView, View} from 'react-native' +import {View} from 'react-native' import {i18n, type MessageDescriptor} from '@lingui/core' import {msg} from '@lingui/core/macro' import {useLingui} from '@lingui/react' @@ -51,29 +51,32 @@ export function GifCategoryPills({ useLingui() return ( - - - {GIF_CATEGORIES.map(category => { - if (category.id === 'recents' && !hasRecents) return null - const isActive = category.id === activeId - const label = i18n._(category.label) - return ( - - ) - })} - + + {GIF_CATEGORIES.map(category => { + if (category.id === 'recents' && !hasRecents) return null + const isActive = category.id === activeId + const label = i18n._(category.label) + return ( + + ) + })} ) }