[READ ONLY MIRROR] Open Source TikTok alternative built on AT Protocol github.com/sprksocial/client
flutter atproto video dart
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

Error fix

C3B 75743540 e06d61e9

+3 -3
+3 -3
components/Video/VideoTop.tsx
··· 274 274 key: string, 275 275 ) => { 276 276 return ( 277 - <TouchableOpacity> 277 + <TouchableOpacity key={key}> 278 278 <ThemedText type='defaultBold' darkColor={Colors.dark.text} lightColor={Colors.dark.text} style={[styles.text, selected ? { color: Colors.light.background } : {}]}>{title}</ThemedText> 279 279 </TouchableOpacity> 280 280 ); ··· 324 324 <ThemedText type='subtitle' lightColor={Colors.dark.underlineColor} darkColor={Colors.light.underlineColor}>Custom Feeds</ThemedText> 325 325 { 326 326 customFeeds.map((feed, index) => ( 327 - <> 327 + <React.Fragment key={`customFeed_${index}`}> 328 328 {generateSwitch("#0085FF", feed.name, feed.enabled, () => { 329 329 const newFeeds = customFeeds.slice(); 330 330 newFeeds[index].enabled = !newFeeds[index].enabled; ··· 349 349 ) 350 350 )) 351 351 } 352 - </> 352 + </React.Fragment> 353 353 )) 354 354 } 355 355