FIxed issue where creating a new item doesn't properly notify everyone of the new item

This commit is contained in:
TheXamlGuy
2024-06-15 19:40:54 +01:00
parent 294a83505b
commit fb466149f6
+1 -1
View File
@@ -25,7 +25,7 @@ public class ConfirmCreateItemHandler(IMediator mediator,
ItemConfiguration)>, bool>(new CreateEventArgs<(Guid, string, string,
ItemConfiguration)>((id, name, category, itemConfiguration)));
publisher.Publish(Changed.As(item));
publisher.Publish(Changed.As<Item>());
}
}
}