We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed3ebb7 commit 7dd8ed8Copy full SHA for 7dd8ed8
app/lib/common/components/logo/community_icon.dart
@@ -20,11 +20,11 @@ class CommunityIconObserver extends StatelessWidget {
20
radius: radius,
21
child: Observer(
22
builder: (_) {
23
- if (communityStore.communityIcon != null) {
24
- return SvgPicture.string(communityStore.communityIcon!);
25
- } else {
26
- return SvgPicture.asset(fallBackCommunityIcon);
27
- }
+ if (communityStore.communityIcon != null) {
+ return SvgPicture.string(communityStore.communityIcon!);
+ } else {
+ return SvgPicture.asset(fallBackCommunityIcon);
+ }
28
},
29
),
30
);
0 commit comments