Skip to content

Commit

Permalink
update endpoint from bounty to bounties
Browse files Browse the repository at this point in the history
  • Loading branch information
MahtabBukhari committed Dec 1, 2024
1 parent 2cd4885 commit be9f302
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3666,7 +3666,7 @@ export class MainStore {
if (!uiStore.meInfo) return [];
const info = uiStore.meInfo;

const response = await fetch(`${TribesURL}/bounty/ticket/${initialTicketData.uuid}`, {
const response = await fetch(`${TribesURL}/bounties/ticket/${initialTicketData.uuid}`, {
method: 'POST',
mode: 'cors',
headers: {
Expand Down Expand Up @@ -3706,7 +3706,7 @@ export class MainStore {
if (!uiStore.meInfo) return null;
const info = uiStore.meInfo;

const response = await fetch(`${TribesURL}/bounty/ticket/review/send`, {
const response = await fetch(`${TribesURL}/bounties/ticket/review/send`, {
method: 'POST',
mode: 'cors',
headers: {
Expand Down

0 comments on commit be9f302

Please sign in to comment.