Skip to content

Commit 6b8cf99

Browse files
authored
chore: add missing space in warning message (#2266) [ci skip]
1 parent af1f5d3 commit 6b8cf99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/reactivity/src/collectionHandlers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ function checkIdentityKeys(
350350
const type = toRawType(target)
351351
console.warn(
352352
`Reactive ${type} contains both the raw and reactive ` +
353-
`versions of the same object${type === `Map` ? `as keys` : ``}, ` +
353+
`versions of the same object${type === `Map` ? ` as keys` : ``}, ` +
354354
`which can lead to inconsistencies. ` +
355355
`Avoid differentiating between the raw and reactive versions ` +
356356
`of an object and only use the reactive version if possible.`

0 commit comments

Comments
 (0)