This commit is contained in:
TheXamlGuy
2024-05-27 04:19:06 +01:00
parent 6a779c1c7d
commit 601e74b6ec
21 changed files with 123 additions and 66 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ public class ContainerFactory(IComponentFactory componentFactory) :
{
public IComponentHost? Create(string name)
{
if (componentFactory.Create<IContainerComponent, ContainerConfiguration>($"Vault:{name}",
if (componentFactory.Create<IContainerComponent, ContainerConfiguration>($"Locker:{name}",
new ContainerConfiguration { Name = name }) is IComponentHost host)
{
return host;