Browse Source

Fixed crash on club screen

Arnaud Vergnet 4 years ago
parent
commit
82f208b366

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

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

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

115
         this.categories = categoryList;
115
         this.categories = categoryList;
116
         const {containerPaddingTop, scrollIndicatorInsetTop, onScroll} = this.props.collapsibleStack;
116
         const {containerPaddingTop, scrollIndicatorInsetTop, onScroll} = this.props.collapsibleStack;
117
         return (
117
         return (
118
-            //$FlowFixMe
119
             <Animated.FlatList
118
             <Animated.FlatList
120
                 data={clubList}
119
                 data={clubList}
121
                 keyExtractor={this.keyExtractor}
120
                 keyExtractor={this.keyExtractor}

Loading…
Cancel
Save