Skip to content

Commit 70c97fa

Browse files
committed
Fix lint errors caused by matrix-js-sdl/src import
1 parent 9acc1d1 commit 70c97fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

playwright/fixtures/widget-user.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Please see LICENSE in the repository root for full details.
77

88
import { type Page, test, expect, type JSHandle } from "@playwright/test";
99

10-
import type { MatrixClient } from "matrix-js-sdk/src";
10+
import type { MatrixClient } from "matrix-js-sdk";
1111

1212
export type UserBaseFixture = {
1313
mxId: string;

playwright/global.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
55
Please see LICENSE in the repository root for full details.
66
*/
77

8-
import type * as Matrix from "matrix-js-sdk/src";
8+
import type * as Matrix from "matrix-js-sdk";
99

1010
declare global {
1111
interface Window {

0 commit comments

Comments
 (0)