From fb466149f643cd8e3d5de734a7c611c605c2e831 Mon Sep 17 00:00:00 2001 From: TheXamlGuy Date: Sat, 15 Jun 2024 19:40:54 +0100 Subject: [PATCH] FIxed issue where creating a new item doesn't properly notify everyone of the new item --- Wallet/ConfirmCreateItemHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wallet/ConfirmCreateItemHandler.cs b/Wallet/ConfirmCreateItemHandler.cs index bf2e035..ca19c7f 100644 --- a/Wallet/ConfirmCreateItemHandler.cs +++ b/Wallet/ConfirmCreateItemHandler.cs @@ -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()); } } }