From 70c97fa8be8cb193f651380b7807110d1c70df84 Mon Sep 17 00:00:00 2001 From: Timo Date: Thu, 3 Apr 2025 15:51:47 +0200 Subject: [PATCH] Fix lint errors caused by matrix-js-sdl/src import --- playwright/fixtures/widget-user.ts | 2 +- playwright/global.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright/fixtures/widget-user.ts b/playwright/fixtures/widget-user.ts index 391a2dd6..2ac8d3b8 100644 --- a/playwright/fixtures/widget-user.ts +++ b/playwright/fixtures/widget-user.ts @@ -7,7 +7,7 @@ Please see LICENSE in the repository root for full details. import { type Page, test, expect, type JSHandle } from "@playwright/test"; -import type { MatrixClient } from "matrix-js-sdk/src"; +import type { MatrixClient } from "matrix-js-sdk"; export type UserBaseFixture = { mxId: string; diff --git a/playwright/global.d.ts b/playwright/global.d.ts index 2108240e..8620546f 100644 --- a/playwright/global.d.ts +++ b/playwright/global.d.ts @@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE in the repository root for full details. */ -import type * as Matrix from "matrix-js-sdk/src"; +import type * as Matrix from "matrix-js-sdk"; declare global { interface Window {