revert change

This commit is contained in:
Eric Bailey
2026-06-04 10:56:50 -05:00
parent 3bd16425b1
commit 69b8214ca6
@@ -129,7 +129,7 @@ function getAppIconName(icon: string | false): DynamicAppIcon.IconName {
if (!icon || icon === 'DEFAULT') { if (!icon || icon === 'DEFAULT') {
return 'default_light' return 'default_light'
} else { } else {
return icon as DynamicAppIcon.IconName return icon
} }
} }
@@ -151,7 +151,7 @@ function Group({
values={[value]} values={[value]}
maxSelections={1} maxSelections={1}
onChange={vals => { onChange={vals => {
if (vals[0]) onChange(vals[0] as DynamicAppIcon.IconName) if (vals[0]) onChange(vals[0])
}}> }}>
<View style={[a.flex_1, a.rounded_md, a.overflow_hidden]}> <View style={[a.flex_1, a.rounded_md, a.overflow_hidden]}>
{children} {children}