Skip to content

Commit

Permalink
message
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmonisit committed Oct 27, 2024
1 parent ec36864 commit 48a25d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/dashboard/raffle/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ export default function RafflePage() {
}));

const response = await UpdateBuyIns(buyIns);
console.log(response.response);
if (response.error) {
throw new Error(response.error);
}
Expand Down
1 change: 1 addition & 0 deletions app/lib/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -873,6 +873,7 @@ export async function UpdateBuyIns(
console.log(resJSON);
if (res.status !== 200) {
resp.error = 'Error Updating Buy-Ins';
resp.response = resJSON;
} else {
resp.response = resJSON;
}
Expand Down

0 comments on commit 48a25d4

Please sign in to comment.