diff --git a/packages/hoppscotch-common/src/components/collections/AddRequest.vue b/packages/hoppscotch-common/src/components/collections/AddRequest.vue index 1f8df882..d3066b74 100644 --- a/packages/hoppscotch-common/src/components/collections/AddRequest.vue +++ b/packages/hoppscotch-common/src/components/collections/AddRequest.vue @@ -73,9 +73,9 @@ :icon="IconThumbsDown" outline @click=" - () => { + async () => { if (lastTraceID) { - submitFeedback('negative', lastTraceID) + await submitFeedback('negative', lastTraceID) submittedFeedback = true } } diff --git a/packages/hoppscotch-common/src/components/collections/EditRequest.vue b/packages/hoppscotch-common/src/components/collections/EditRequest.vue index 6f9a7c48..0bd1f022 100644 --- a/packages/hoppscotch-common/src/components/collections/EditRequest.vue +++ b/packages/hoppscotch-common/src/components/collections/EditRequest.vue @@ -73,9 +73,9 @@ :icon="IconThumbsDown" outline @click=" - () => { + async () => { if (lastTraceID) { - submitFeedback('negative', lastTraceID) + await submitFeedback('negative', lastTraceID) submittedFeedback = true } } diff --git a/packages/hoppscotch-common/src/components/collections/SaveRequest.vue b/packages/hoppscotch-common/src/components/collections/SaveRequest.vue index 21b67ae4..a597cd95 100644 --- a/packages/hoppscotch-common/src/components/collections/SaveRequest.vue +++ b/packages/hoppscotch-common/src/components/collections/SaveRequest.vue @@ -95,9 +95,9 @@ :icon="IconThumbsDown" outline @click=" - () => { + async () => { if (lastTraceID) { - submitFeedback('negative', lastTraceID) + await submitFeedback('negative', lastTraceID) submittedFeedback = true } } diff --git a/packages/hoppscotch-common/src/components/collections/graphql/AddRequest.vue b/packages/hoppscotch-common/src/components/collections/graphql/AddRequest.vue index dc5e52e7..e51449cb 100644 --- a/packages/hoppscotch-common/src/components/collections/graphql/AddRequest.vue +++ b/packages/hoppscotch-common/src/components/collections/graphql/AddRequest.vue @@ -72,9 +72,9 @@ :icon="IconThumbsDown" outline @click=" - () => { + async () => { if (lastTraceID) { - submitFeedback('negative', lastTraceID) + await submitFeedback('negative', lastTraceID) submittedFeedback = true } } diff --git a/packages/hoppscotch-common/src/components/collections/graphql/EditRequest.vue b/packages/hoppscotch-common/src/components/collections/graphql/EditRequest.vue index 01a07ea4..f7345f3b 100644 --- a/packages/hoppscotch-common/src/components/collections/graphql/EditRequest.vue +++ b/packages/hoppscotch-common/src/components/collections/graphql/EditRequest.vue @@ -72,9 +72,9 @@ :icon="IconThumbsDown" outline @click=" - () => { + async () => { if (lastTraceID) { - submitFeedback('negative', lastTraceID) + await submitFeedback('negative', lastTraceID) submittedFeedback = true } }