Skip to content

Commit

Permalink
Fix profile variable
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharykeeping committed Aug 30, 2024
1 parent 76284a5 commit 2f261fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MobileUI/Features/Network/NetworkPageViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private async Task FilterBySegment()
break;
case NetworkPageSegments.ToMeet:
default:
SearchResults.ReplaceRange(Profiles.Where(x => x.IsStaff && !x.Scanned));
SearchResults.ReplaceRange(_profiles.Where(x => x.IsStaff && !x.Scanned));
break;
}
}
Expand Down

0 comments on commit 2f261fb

Please sign in to comment.