Skip to content

Commit

Permalink
fixed a linting bug that sneaked in
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm authored Jul 20, 2024
1 parent 1934302 commit 6799118
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions server/main-api/src/feedback/post_feedback.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,11 @@ pub async fn send_feedback(
.content_type("text/plain")
.body("Using this endpoint without accepting the privacy policy is not allowed");
};
let labels = parse_labels(&req_data);

github::open_issue(
&format!("{subject}", subject = req_data.subject),
&req_data.subject,
&req_data.body,
labels,
parse_labels(&req_data),
)
.await
}
Expand Down

0 comments on commit 6799118

Please sign in to comment.