From e1d4260f2ad26549df8d058d2ac5885d9b347483 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Tue, 27 Jan 2026 13:57:30 -0800 Subject: [PATCH] return incorrect not-null assertion --- libs/playwright-helpers/src/scene.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/playwright-helpers/src/scene.ts b/libs/playwright-helpers/src/scene.ts index 5f6018657d3..82c39c080ca 100644 --- a/libs/playwright-helpers/src/scene.ts +++ b/libs/playwright-helpers/src/scene.ts @@ -34,7 +34,7 @@ export class Scene { if (!this.inited) { throw new Error("Scene must be initialized before accessing returnValue"); } - return this._returnValue!; + return this._returnValue as Returns; } mangle(id: string): string {