From d716a8744e0be803f15bf233bf14fdeb4826a48b Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Fri, 10 Oct 2025 10:06:38 -0700 Subject: [PATCH] Fix recipe double-delete issue This should be removed when we have the RecipeService on the server support multiple calls to delete with arbitrary frequency --- libs/playwright-scenes/src/scene.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/playwright-scenes/src/scene.ts b/libs/playwright-scenes/src/scene.ts index 21e44aa27e3..750c87a912d 100644 --- a/libs/playwright-scenes/src/scene.ts +++ b/libs/playwright-scenes/src/scene.ts @@ -67,6 +67,7 @@ class Scene implements UsingRequired { // Fire off an unawaited promise to delete the side effects of the scene void this.recipe.down(); + seedIdsToTearDown.delete(this.seedId); }; mangle(id: string): string {