diff --git a/RomRepoMgr.Blazor/Components/Dialogs/ImportDats.razor b/RomRepoMgr.Blazor/Components/Dialogs/ImportDats.razor index f3a4209..edaf3b5 100644 --- a/RomRepoMgr.Blazor/Components/Dialogs/ImportDats.razor +++ b/RomRepoMgr.Blazor/Components/Dialogs/ImportDats.razor @@ -1,3 +1,4 @@ +@using Microsoft.Extensions.Localization @using RomRepoMgr.Blazor.Resources @implements IDialogContentComponent @inject ILogger Logger diff --git a/RomRepoMgr.Blazor/Components/Dialogs/ImportDats.razor.cs b/RomRepoMgr.Blazor/Components/Dialogs/ImportDats.razor.cs index 912fe1f..1cdf01a 100644 --- a/RomRepoMgr.Blazor/Components/Dialogs/ImportDats.razor.cs +++ b/RomRepoMgr.Blazor/Components/Dialogs/ImportDats.razor.cs @@ -1,5 +1,6 @@ using System.Diagnostics; using Microsoft.AspNetCore.Components; +using Microsoft.FluentUI.AspNetCore.Components; using RomRepoMgr.Core.EventArgs; using RomRepoMgr.Core.Workers; using Serilog; diff --git a/RomRepoMgr.Blazor/Components/Dialogs/ImportRoms.razor b/RomRepoMgr.Blazor/Components/Dialogs/ImportRoms.razor index 280eff3..3997df2 100644 --- a/RomRepoMgr.Blazor/Components/Dialogs/ImportRoms.razor +++ b/RomRepoMgr.Blazor/Components/Dialogs/ImportRoms.razor @@ -1,3 +1,4 @@ +@using Microsoft.Extensions.Localization @using RomRepoMgr.Blazor.Resources @using RomRepoMgr.Database @implements IDialogContentComponent diff --git a/RomRepoMgr.Blazor/Components/Dialogs/ImportRoms.razor.cs b/RomRepoMgr.Blazor/Components/Dialogs/ImportRoms.razor.cs index 662984a..563949d 100644 --- a/RomRepoMgr.Blazor/Components/Dialogs/ImportRoms.razor.cs +++ b/RomRepoMgr.Blazor/Components/Dialogs/ImportRoms.razor.cs @@ -1,6 +1,7 @@ using System.Collections.Concurrent; using System.Diagnostics; using Microsoft.AspNetCore.Components; +using Microsoft.FluentUI.AspNetCore.Components; using RomRepoMgr.Core.EventArgs; using RomRepoMgr.Core.Workers; using RomRepoMgr.Database.Models;