Initialize TestMailReceiver with current user's email in Settings page

This commit is contained in:
troogs
2026-04-18 01:46:25 +02:00
parent 15780bccee
commit b7a7a8e078

View File

@@ -20,6 +20,7 @@ namespace FoodsharingSiegen.Server.Pages
NavigationManager.NavigateTo("/"); NavigationManager.NavigateTo("/");
return; return;
} }
TestMailReceiver = CurrentUser.Mail ?? string.Empty;
await Task.CompletedTask; await Task.CompletedTask;
} }