auto-commit for 31f3d9d6-2897-4ecc-8dc4-e03ae3c3965a

This commit is contained in:
emergent-agent-e1
2025-11-08 20:12:42 +00:00
parent f979df0b2c
commit 9bf2dc3a48
+5 -2
View File
@@ -92,10 +92,13 @@ function HomeTab() {
<View style={styles.quickActionsContainer}>
<Text style={styles.sectionTitle}>Quick Actions</Text>
<View style={styles.actionsGrid}>
{QUICK_ACTIONS.map((action) => (
{QUICK_ACTIONS.map((action, index) => (
<TouchableOpacity
key={action.id}
style={styles.actionCard}
style={[styles.actionCard,
(index % 4 === 0) && styles.actionCardFirst,
(index % 4 === 3) && styles.actionCardLast
]}
activeOpacity={0.7}
>
<View style={[styles.actionIcon, { backgroundColor: action.color }]}>