fixing filtering of lists (#311)

* fixing listing filtering by applying the correct id
This commit is contained in:
Christian Kellner
2026-06-02 09:24:45 +02:00
committed by GitHub
parent 573868eccb
commit a834abc31c
3 changed files with 24 additions and 18 deletions

View File

@@ -32,4 +32,7 @@ export const deletedIds = [];
export const deleteListingsById = (ids) => {
deletedIds.push(...ids);
};
export const deleteListingsByHash = (hashes) => {
deletedIds.push(...hashes);
};
/* eslint-enable no-unused-vars */