Skip to content

Commit

Permalink
feat: update API endpoint for changing milestone flag to use approved…
Browse files Browse the repository at this point in the history
… flag
  • Loading branch information
JoelVR17 committed Feb 19, 2025
1 parent a14faed commit 965d297
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ export const changeMilestoneFlag = async (
payload: ChangeMilestoneFlagPayload,
) => {
try {
const response = await http.post("/escrow/change-milestone-flag", payload);
const response = await http.post(
"/escrow/change-milestone-approved-flag",
payload,
);

const { unsignedTransaction } = response.data;
const { address } = await kit.getAddress();
Expand Down

0 comments on commit 965d297

Please sign in to comment.