From 1cedaff87a28f3c4c24b70be374d57527a78c699 Mon Sep 17 00:00:00 2001 From: geonheey Date: Tue, 8 Oct 2024 15:03:10 +0900 Subject: [PATCH] =?UTF-8?q?[Hotfix]=20=EB=85=BC=EB=A6=AC=EC=97=B0=EC=82=B0?= =?UTF-8?q?=EC=9E=90=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/view/search/component/search_farmclub_info.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/view/search/component/search_farmclub_info.dart b/lib/view/search/component/search_farmclub_info.dart index 6fcc8201..b5a235d4 100644 --- a/lib/view/search/component/search_farmclub_info.dart +++ b/lib/view/search/component/search_farmclub_info.dart @@ -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();