Bluesky app fork with some witchin' additions 💫

prevent crash from opening appearance

authored by whey.party and committed by Tangled 608e07a9 5d9bb90c

Changed files
+1 -1
src
screens
Settings
AppIconSettings
+1 -1
src/screens/Settings/AppIconSettings/useCurrentAppIcon.ts
··· 20 20 return useMemo(() => { 21 21 return ( 22 22 appIconSets.defaults.find(i => i.id === currentAppIcon) ?? 23 - appIconSets.core.find(i => i.id === currentAppIcon) ?? 23 + //appIconSets.core.find(i => i.id === currentAppIcon) ?? 24 24 appIconSets.defaults[0] 25 25 ) 26 26 }, [appIconSets, currentAppIcon])