Skip to content

Commit

Permalink
minor == fix
Browse files Browse the repository at this point in the history
  • Loading branch information
philipye314 committed Nov 1, 2024
1 parent 3dedc42 commit e69e83d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screens/SeekHelp/ResourceList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ export default function ResourceList() {
<TouchableOpacity
key={index}
style={
selectedFilter == filter
selectedFilter === filter
? styles.selectedFilterButton
: styles.filterButton
}
onPress={() => applyFilter(filter)}
>
<Text
style={
selectedFilter == filter
selectedFilter === filter
? styles.selectedButtonText
: styles.buttonText
}
Expand Down

0 comments on commit e69e83d

Please sign in to comment.