Skip to content

Commit

Permalink
fix(Presence): typo in error message (#563)
Browse files Browse the repository at this point in the history
  • Loading branch information
oaleynik authored Dec 17, 2023
1 parent 5958d4f commit d956f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/radix-vue/src/Presence/Presence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default defineComponent({
'Note: Presence works similarly to `v-if` directly, but it waits for animation/transition to finished before unmounting. So it expect only one direct child of valid VNode type.',
'You can apply a few solutions:',
[
'Provide a single child element so that `presence` directive attach correctly.rv',
'Provide a single child element so that `presence` directive attach correctly.',
'Ensure the first child is an actual element instead of a raw text node or comment node.',
]
.map(line => ` - ${line}`)
Expand Down

0 comments on commit d956f00

Please sign in to comment.