diff --git a/FoodsharingSiegen.Server/Controls/ProspectContainer.razor b/FoodsharingSiegen.Server/Controls/ProspectContainer.razor
index 2edda8b..9d1a366 100644
--- a/FoodsharingSiegen.Server/Controls/ProspectContainer.razor
+++ b/FoodsharingSiegen.Server/Controls/ProspectContainer.razor
@@ -12,8 +12,23 @@
- @Prospect?.Name
- @Prospect?.FsId
+ @if(string.IsNullOrWhiteSpace(Prospect?.Name))
+ {
+
+
+
+ »Name fehlt«
+ }
+ else
+ {
+ @Prospect?.Name
+ }
+
+ @if (Prospect?.FsId != null && Prospect.FsId != 0)
+ {
+ @Prospect?.FsId
+ }
+
@if (CurrentUser.IsInGroup(UserGroup.WelcomeTeam, UserGroup.Ambassador))
diff --git a/FoodsharingSiegen.Server/wwwroot/buildinfo.txt b/FoodsharingSiegen.Server/wwwroot/buildinfo.txt
index 238dd7b..caade37 100644
--- a/FoodsharingSiegen.Server/wwwroot/buildinfo.txt
+++ b/FoodsharingSiegen.Server/wwwroot/buildinfo.txt
@@ -1 +1 @@
-20260410
+20260416