Skip to content

Commit ea69320

Browse files
author
Gary Woodfine
committed
fix(PostReply): remove redundant space in ref import
1 parent 6976528 commit ea69320

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/runtime/components/PostReply.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script setup lang="ts">
22
import { useReplies } from '../composables/useReplies'
3-
import { ref } from 'vue'
3+
import { ref } from 'vue'
4+
45
const props = defineProps<{ rootId: string }>()
56
const { reply } = useReplies(props.rootId)
67
const EMPTY_COMMENT = ''

0 commit comments

Comments
 (0)