Skip to content

Commit

Permalink
fix: send empty labels with proposals
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaituVR committed Oct 7, 2024
1 parent 7320dcc commit fe80688
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/composables/useClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export function useClient() {
body: payload.body,
discussion: payload.discussion,
choices: payload.choices,
labels: [],
start: payload.start,
end: payload.end,
snapshot: payload.snapshot,
Expand All @@ -67,6 +68,7 @@ export function useClient() {
body: payload.body,
discussion: payload.discussion,
choices: payload.choices,
labels: [],
plugins: JSON.stringify(plugins)
});
} else if (type === 'vote') {
Expand Down

0 comments on commit fe80688

Please sign in to comment.