fix: Fixes major bug with BoBEntries removal (#2165)

This commit is contained in:
Kamron Batman 2025-04-27 22:05:07 -07:00 committed by GitHub
parent 78feea86b4
commit f89b2be653
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,5 +17,5 @@ public class BOBEntries : GenericEntityPersistence<IBOBEntry>
public static void Add(IBOBEntry entity) => _bobEntriesPersistence.AddEntity(entity);
public static void Remove(IBOBEntry entity) => _bobEntriesPersistence.AddEntity(entity);
public static void Remove(IBOBEntry entity) => _bobEntriesPersistence.RemoveEntity(entity);
}