Skip to content

Commit

Permalink
Temp change to Succeeded
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed Oct 29, 2023
1 parent 36e54bc commit 8dcedaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runners/background.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async function checkPaymentsInFlight() {
for (const key of keys) {
const payment = await get(store, key);
console.log(payment.status);
if (payment && payment.status === "InFlight") {
if (payment && payment.status === "Succeeded") { // fixme change back to InFlight
showNotification();
break;
}
Expand Down

0 comments on commit 8dcedaf

Please sign in to comment.