Skip to content

Commit 2c6c079

Browse files
authored
chore: fix type check error (#13366)
1 parent 93949e6 commit 2c6c079

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/compiler-sfc/src/compileScript.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ export function mergeSourceMaps(
13241324
},
13251325
original: {
13261326
line: m.originalLine,
1327-
column: m.originalColumn,
1327+
column: m.originalColumn!,
13281328
},
13291329
source: m.source,
13301330
name: m.name,

packages/server-renderer/__tests__/webStream.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ test('pipeToWebWritable', async () => {
4949
}
5050

5151
const { readable, writable } = new TransformStream()
52-
pipeToWebWritable(createApp(App), {}, writable)
52+
pipeToWebWritable(createApp(App), {}, writable as any)
5353

5454
const reader = readable.getReader()
5555
const decoder = new TextDecoder()

0 commit comments

Comments
 (0)