Skip to content

Commit

Permalink
Swap ornithology and entomology buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
eleurent committed Jan 14, 2024
1 parent 910a97e commit e713705
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions frontend/screens/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ export default function HomeScreen({ navigation }) {
<View style={{ flex: 1 }}></View>
</View>
<View style={styles.categoryRowContainer}>
<CategoryButton
onPress={() => navigation.navigate('SpeciesList', {type: 'bird'})}
imageSource={require('../assets/images/ornithology.png')}
label={'ORNITHOLOGY'}
/>
<CategoryButton
disabled
imageSource={require('../assets/images/entomology.png')}
label={'ENTOMOLOGY'}
/>
<View style={{ flex: 1 }}></View>
<CategoryButton
onPress={() => navigation.navigate('SpeciesList', {type: 'bird'})}
imageSource={require('../assets/images/ornithology.png')}
label={'ORNITHOLOGY'}
/>
</View>
<View style={styles.categoryRowContainer}>
<View style={{ flex: 1 }}></View>
Expand Down

0 comments on commit e713705

Please sign in to comment.