Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client

Restore type assert that got accidentally removed (#9934)

authored by samuel.fm and committed by

GitHub 782edbf2 73b096e4

+2 -2
+2 -2
src/screens/Settings/AppIconSettings/index.tsx
··· 129 129 if (!icon || icon === 'DEFAULT') { 130 130 return 'default_light' 131 131 } else { 132 - return icon 132 + return icon as DynamicAppIcon.IconName 133 133 } 134 134 } 135 135 ··· 151 151 values={[value]} 152 152 maxSelections={1} 153 153 onChange={vals => { 154 - if (vals[0]) onChange(vals[0]) 154 + if (vals[0]) onChange(vals[0] as DynamicAppIcon.IconName) 155 155 }}> 156 156 <View style={[a.flex_1, a.rounded_md, a.overflow_hidden]}> 157 157 {children}