File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
MeetUpPlanner/Client/Pages Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 162
162
{
163
163
logMessage = " Das eingegebene Schlüsselwort ist leider falsch..." ;
164
164
}
165
+ AppStateStore .FirstName = AppStateStore .FirstName .Trim ();
166
+ AppStateStore .LastName = AppStateStore .LastName .Trim ();
167
+ AppStateStore .PhoneMail = AppStateStore .PhoneMail .Trim ();
165
168
if (AppStateStore .SaveSettings )
166
169
{
167
170
// Copy from app state to permanent storage
Original file line number Diff line number Diff line change 134
134
}
135
135
private async Task RegisterGuest ()
136
136
{
137
+ _guest .ParticipantFirstName = _guest .ParticipantFirstName .Trim ();
138
+ _guest .ParticipantLastName = _guest .ParticipantLastName .Trim ();
139
+ _guest .ParticipantAdressInfo = _guest .ParticipantAdressInfo .Trim ();
137
140
if (AppStateStore .SaveSettings )
138
141
{
139
142
// Copy from app state to permanent storage
You can’t perform that action at this time.
0 commit comments