fix: remove old hashes

This commit is contained in:
Michal Szczepanski 2023-10-31 15:43:19 +01:00
parent e06c4e77bd
commit a7a4fd6c4b
1 changed files with 1 additions and 1 deletions

View File

@ -82,6 +82,6 @@ export class PageSnapshotRemoveCommand implements ICommand<Promise<void>> {
ref.push(...cssRefs);
// remove snapshot
await new PageSegmentRemoveListCommand([hash]).execute();
await new PageSegmentRemoveListCommand([...ref, hash]).execute();
};
}