We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e784bad commit c2e0de9Copy full SHA for c2e0de9
src/screens/Profile/index.tsx
@@ -188,7 +188,11 @@ export const ProfileScreen = ({ owner }: { owner?: string }) => {
188
<ScrollView showsHorizontalScrollIndicator={false}>
189
<ProfileBlock
190
owner={owner!}
191
- domain={favorite.result?.reverse || domains?.result?.[0]?.domain!}
+ domain={
192
+ favorite.result?.reverse ||
193
+ domains?.result?.[0]?.domain! ||
194
+ subdomains?.result?.[0]?.subdomain!
195
+ }
196
picRecord={picRecord}
197
isPicValid={isCurrentPicValid}
198
onNewPicUploaded={() => {
0 commit comments