mod: err string

fix: typo

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-11 15:01:05 +08:00
parent 72734d4b4e
commit 4a782332d3
4 changed files with 11 additions and 11 deletions

View File

@@ -10,11 +10,11 @@ class FollowSearchPage extends CommonSearchPage {
const FollowSearchPage({
super.key,
this.mid,
this.isFromSelct,
this.isFromSelect,
});
final int? mid;
final bool? isFromSelct;
final bool? isFromSelect;
@override
State<FollowSearchPage> createState() => _FollowSearchPageState();
@@ -42,7 +42,7 @@ class _FollowSearchPageState extends CommonSearchPageState<FollowSearchPage,
}
return FollowItem(
item: list[index],
onSelect: widget.mid != null && widget.isFromSelct != false
onSelect: widget.mid != null && widget.isFromSelect != false
? (userModel) {
Get.back(result: userModel);
}