Skip to content

Commit

Permalink
Fixed email invites (#3669)
Browse files Browse the repository at this point in the history
  • Loading branch information
JR-Morgan authored Jan 7, 2025
1 parent 17b2486 commit 2ae0fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DesktopUI2/DesktopUI2/ViewModels/CollaboratorsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ private async void SaveCommand()
await _stream
.StreamState.Client.ProjectInvite.Create(
_stream.StreamState.StreamId,
new ProjectInviteCreateInput(null, user.Role, null, user.Id)
new ProjectInviteCreateInput(user.Name, user.Role, null, null)
)
.ConfigureAwait(true);
Analytics.TrackEvent(
Expand Down

0 comments on commit 2ae0fde

Please sign in to comment.