From 6fc1972cc4a044756d89281803755b4239e6c9d3 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 24 May 2025 18:13:56 +0200 Subject: [PATCH] Fix namespace reference in the TB function of ProfileSelection. --- app/MindWork AI Studio/Components/ProfileSelection.razor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Components/ProfileSelection.razor.cs b/app/MindWork AI Studio/Components/ProfileSelection.razor.cs index 649e2140..26f45a35 100644 --- a/app/MindWork AI Studio/Components/ProfileSelection.razor.cs +++ b/app/MindWork AI Studio/Components/ProfileSelection.razor.cs @@ -6,7 +6,7 @@ namespace AIStudio.Components; public partial class ProfileSelection : MSGComponentBase { - private static string TB(string fallbackEN) => I18N.I.T(fallbackEN, typeof(ConfigurationProviderSelection).Namespace, nameof(ConfigurationProviderSelection)); + private static string TB(string fallbackEN) => I18N.I.T(fallbackEN, typeof(ProfileSelection).Namespace, nameof(ProfileSelection)); [Parameter] public Profile CurrentProfile { get; set; } = Profile.NO_PROFILE;