Skip to content

Commit

Permalink
fix: need to specify brave ads (#1045)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanKrieger authored Feb 1, 2024
1 parent 044a633 commit 4d1c059
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/auth/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,11 @@ export const sendMarketingEmail = async (req: {
method: "POST",
mode: "cors",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(req),
body: JSON.stringify({
email: req.email,
name: req.name,
newsletters: [{ name: "Brave Ads" }],
}),
},
);

Expand Down

0 comments on commit 4d1c059

Please sign in to comment.