diff --git a/Dalamud/IoC/Internal/ServiceContainer.cs b/Dalamud/IoC/Internal/ServiceContainer.cs
index 39c2007f31..a8eacb02de 100644
--- a/Dalamud/IoC/Internal/ServiceContainer.cs
+++ b/Dalamud/IoC/Internal/ServiceContainer.cs
@@ -145,7 +145,7 @@ await Task.WhenAll(
/// Scoped objects to be injected.
/// The scope to be used to create scoped services.
/// A representing the operation.
- public async ValueTask InjectProperties(object instance, object[] publicScopes, IServiceScope? scope = null)
+ public async Task InjectProperties(object instance, object[] publicScopes, IServiceScope? scope = null)
{
var scopeImpl = scope as ServiceScopeImpl;
var objectType = instance.GetType();
diff --git a/Dalamud/IoC/Internal/ServiceScope.cs b/Dalamud/IoC/Internal/ServiceScope.cs
index fb06ec75c5..4fc299f6e7 100644
--- a/Dalamud/IoC/Internal/ServiceScope.cs
+++ b/Dalamud/IoC/Internal/ServiceScope.cs
@@ -17,7 +17,7 @@ internal interface IServiceScope : IDisposable
/// but not directly to created objects.
///
/// The scopes to add.
- public void RegisterPrivateScopes(params object[] scopes);
+ void RegisterPrivateScopes(params object[] scopes);
///
/// Create an object.
@@ -25,7 +25,7 @@ internal interface IServiceScope : IDisposable
/// The type of object to create.
/// Scoped objects to be included in the constructor.
/// The created object.
- public Task