Bluesky app fork with some witchin' additions 💫

fix 16, profile icon filled with did url

commit ab03fd98aa172664ae07e531118e765973fa8d75
Author: Aviva Ruben <aviva@rubenfamily.com>
Date: Mon Apr 21 19:27:26 2025 -0500

check did and handle

Aviva Ruben 73df1df0 c4bb3190

+4 -2
+4 -2
src/view/shell/desktop/LeftNav.tsx
··· 318 318 let isCurrent = 319 319 currentRouteInfo.name === 'Profile' 320 320 ? isTab(currentRouteInfo.name, pathName) && 321 - (currentRouteInfo.params as CommonNavigatorParams['Profile']).name === 322 - currentAccount?.handle 321 + ((currentRouteInfo.params as CommonNavigatorParams['Profile']).name === 322 + currentAccount?.handle || 323 + (currentRouteInfo.params as CommonNavigatorParams['Profile']).name === 324 + currentAccount?.did) 323 325 : isTab(currentRouteInfo.name, pathName) 324 326 const {onPress} = useLinkProps({to: href}) 325 327 const onPressWrapped = React.useCallback(