Skip to content

Commit 058b79f

Browse files
DevTKSSCopilot
andcommitted
chore: fix typo
Co-authored-by: Copilot <[email protected]>
1 parent 68fe447 commit 058b79f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/MvuxListApp/Presentation/MainModel.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,21 @@ private async void Main_OnRouteChanged(object? sender, RouteChangedEventArgs e)
4343

4444
public IState<string> SelectedMember => State<string>.Value(this,() => string.Empty);
4545

46-
public IState<string> ModifyedMemberName => State<string>.Empty(this)
46+
public IState<string> ModifiedMemberName => State<string>.Empty(this)
4747
.ForEach(RenameMemberAsync);
4848

49-
public async ValueTask RenameMemberAsync([FeedParameter(nameof(ModifyedMemberName))]string? modifyedName, CancellationToken ct)
49+
public async ValueTask RenameMemberAsync([FeedParameter(nameof(ModifiedMemberName))]string? modifiedName, CancellationToken ct)
5050
{
5151

5252
string replaceMeItem = await SelectedMember ?? string.Empty;
53-
string modifyedItem = await ModifyedMemberName ?? string.Empty;
54-
_logger.LogInformation("Modifyed MemberName ist: {modifyedItem}", modifyedItem);
53+
string modifiedItem = await ModifiedMemberName ?? string.Empty;
54+
_logger.LogInformation("Modified MemberName ist: {modifiedItem}", modifiedItem);
5555
_logger.LogInformation("SelectedMemeber ist: {selectedMember}", replaceMeItem);
5656

5757
await DashboardList.RemoveAllAsync(item => item == replaceMeItem);
5858

59-
await DashboardList.AddAsync(modifyedItem,ct);
59+
await DashboardList.AddAsync(modifiedItem,ct);
6060

61-
await DashboardList.TrySelectAsync(modifyedItem,ct);
61+
await DashboardList.TrySelectAsync(modifiedItem,ct);
6262
}
6363
}

0 commit comments

Comments
 (0)