From 7503f89e3f484c21b716b3fc88a66cf3dbae3023 Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Thu, 24 Apr 2025 01:21:29 -0400 Subject: [PATCH] bug: Presentation.Description is null on creator's creation --- backend/src/Web/Features/Contents/Data/Creator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/Web/Features/Contents/Data/Creator.cs b/backend/src/Web/Features/Contents/Data/Creator.cs index 71f6438..ba8e24e 100644 --- a/backend/src/Web/Features/Contents/Data/Creator.cs +++ b/backend/src/Web/Features/Contents/Data/Creator.cs @@ -25,7 +25,7 @@ public class Creator public bool AcceptDonation { get; set; } public Socials Socials { get; set; } = new(); - public Presentation Presentation { get; set; } = new(); + public Presentation Presentation { get; set; } = new() { Description = "Welcome to my profile!" }; } public class Socials