Skip to content

Commit 3bb4ba2

Browse files
fix: tweet drawer button hard to open - [CU-869bfpkjc] (#234)
Co-authored-by: tonynagyy <nagytony2@gmail.com>
1 parent 0f02737 commit 3bb4ba2

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

src/components/ui/Tweet.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -300,18 +300,19 @@ export default function Tweet({
300300
{loadingSummary ? (
301301
<ActivityIndicator size="small" />
302302
) : (
303-
<Ionicons name="sparkles" size={20} className="text-primary" />
303+
<Ionicons name="sparkles" size={18} className="text-primary" />
304304
)}
305305
</Pressable>
306306
)}
307307
<Pressable
308308
onPress={openTweetDrawer}
309309
accessibilityLabel="tweet-drawer"
310310
testID="tweet-drawer"
311+
hitSlop={10}
311312
>
312313
<MaterialCommunityIcons
313314
name="dots-vertical"
314-
size={16}
315+
size={20}
315316
className="text-[var(--color-muted-foreground)]"
316317
/>
317318
</Pressable>
@@ -586,10 +587,11 @@ export default function Tweet({
586587
onPress={openTweetDrawer}
587588
testID="tweet-drawer"
588589
accessibilityLabel="tweet-drawer-button"
590+
hitSlop={10}
589591
>
590592
<MaterialCommunityIcons
591593
name="dots-vertical"
592-
size={16}
594+
size={18}
593595
className="text-[var(--color-muted-foreground)]"
594596
/>
595597
</Pressable>

0 commit comments

Comments
 (0)