Skip to content

Commit

Permalink
[Hotfix] 논리연산자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
geonheey committed Oct 8, 2024
1 parent 35e2e2a commit 1cedaff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/view/search/component/search_farmclub_info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class SearchFarmclubInfo extends ConsumerWidget {

return farmclubs.when(
data: (data) {
if (data != null && data!.isNotEmpty) {
if (data != null && data.isNotEmpty) {
final filteredData = data.where((farmclub) {
return difficultiesToFilter.contains(farmclub.difficulty);
}).toList();
Expand Down

0 comments on commit 1cedaff

Please sign in to comment.