diff --git a/frontend/components/product/ProductComments.vue b/frontend/components/product/ProductComments.vue index 1c0c592..ebb75f5 100644 --- a/frontend/components/product/ProductComments.vue +++ b/frontend/components/product/ProductComments.vue @@ -24,7 +24,7 @@ const { mutateAsync: createComment, isPending: isCreateCommentPending } = const submitComment = async () => { if (userComment.value.length > 3) { await createComment({ - content: userComment.value, + content: userComment.value }); userComment.value = ""; @@ -36,11 +36,11 @@ const submitComment = async () => {