Skip to content

Commit

Permalink
update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
double-beep authored Jul 18, 2024
1 parent 29e2c9f commit 0c09fb3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dist/fire_extra.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,11 @@
if (pr && prId) {
const { regex, type } = pr;
updateKeywordLists(regex.source, type);
Domains.pullRequests = Domains.pullRequests.filter(({ id }) => id !== prId);
}
getUpdatedPrInfo(message).then((info) => Domains.pullRequests = info || []).catch((error) => console.error(error));
getUpdatedPrInfo(message).then((info) => {
Domains.pullRequests = (info || []).filter(({ id }) => id !== prId);
}).catch((error) => console.error(error));
}

// src/stackexchange.ts
Expand Down

0 comments on commit 0c09fb3

Please sign in to comment.