From 43f1dc20540b9bc6af1125db6cf0ed6deffccc00 Mon Sep 17 00:00:00 2001 From: Gerrit Birkeland Date: Thu, 22 Aug 2024 19:40:04 -0600 Subject: [PATCH] Fix lint --- src/lib/output/events.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/output/events.ts b/src/lib/output/events.ts index 44e6b0b3a..f8d250e81 100644 --- a/src/lib/output/events.ts +++ b/src/lib/output/events.ts @@ -159,7 +159,7 @@ export class PageEvent { if (typeof nameOrModel === "string") { this.model = model!; } else { - this.model = nameOrModel as Model; + this.model = nameOrModel; } } }