diff --git a/app/MindWork AI Studio/Pages/Supporters.razor b/app/MindWork AI Studio/Pages/Supporters.razor
index c9350408..8e32052c 100644
--- a/app/MindWork AI Studio/Pages/Supporters.razor
+++ b/app/MindWork AI Studio/Pages/Supporters.razor
@@ -1,4 +1,5 @@
@attribute [Route(Routes.SUPPORTERS)]
+@inherits MSGComponentBase
Supporters
diff --git a/app/MindWork AI Studio/Pages/Supporters.razor.cs b/app/MindWork AI Studio/Pages/Supporters.razor.cs
index 45065ad9..5243b769 100644
--- a/app/MindWork AI Studio/Pages/Supporters.razor.cs
+++ b/app/MindWork AI Studio/Pages/Supporters.razor.cs
@@ -1,7 +1,14 @@
+using AIStudio.Components;
+
using Microsoft.AspNetCore.Components;
namespace AIStudio.Pages;
-public partial class Supporters : ComponentBase
+public partial class Supporters : MSGComponentBase
{
+ #region Overrides of MSGComponentBase
+
+ public override string ComponentName => nameof(Supporters);
+
+ #endregion
}
\ No newline at end of file