Browse Source

Fixed crash on club screen

Arnaud Vergnet 3 years ago
parent
commit
82f208b366

+ 3
- 2
src/screens/Amicale/Clubs/ClubDisplayScreen.js View File

@@ -170,7 +170,8 @@ class ClubDisplayScreen extends React.Component<Props, State> {
170 170
                                 source={{
171 171
                                     uri: data.logo,
172 172
                                 }}
173
-                            /></View>
173
+                            />
174
+                        </View>
174 175
                         : <View/>}
175 176
 
176 177
                     {data.description !== null ?
@@ -180,7 +181,7 @@ class ClubDisplayScreen extends React.Component<Props, State> {
180 181
                         </Card.Content>
181 182
                         : <View/>}
182 183
                     {this.getManagersRender(data.responsibles, data.email)}
183
-q                </ScrollView>
184
+                </ScrollView>
184 185
             );
185 186
         } else
186 187
             return null;

+ 0
- 1
src/screens/Amicale/Clubs/ClubListScreen.js View File

@@ -115,7 +115,6 @@ class ClubListScreen extends React.Component<Props, State> {
115 115
         this.categories = categoryList;
116 116
         const {containerPaddingTop, scrollIndicatorInsetTop, onScroll} = this.props.collapsibleStack;
117 117
         return (
118
-            //$FlowFixMe
119 118
             <Animated.FlatList
120 119
                 data={clubList}
121 120
                 keyExtractor={this.keyExtractor}

Loading…
Cancel
Save