We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 287de60 commit 1f0788eCopy full SHA for 1f0788e
TestWasm/Pages/Home.razor
@@ -138,8 +138,8 @@
138
IEnumerable<T> indexDbResults, IEnumerable<T> correctResults) where T : class
139
{
140
// Remove any nulls from both collections
141
- indexDbResults = indexDbResults.Where(x => x != null);
142
- correctResults = correctResults.Where(x => x != null);
+ indexDbResults = indexDbResults.Where(x => x != null);
+ correctResults = correctResults.Where(x => x != null);
143
144
var result = TestValidator.ValidateLists(correctResults, indexDbResults);
145
@@ -262,9 +262,6 @@
262
263
allPeople = await personQuery.ToListAsync();
264
265
-
266
267
- List<Person> people = await personQuery.ToListAsync();
268
StateHasChanged();
269
270
//await manager.ClearTableAsync<Person>();
0 commit comments