Skip to content

Commit

Permalink
Fix reclaimHintsFromOtherFrames always returning undefined (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-tejada authored Aug 6, 2023
1 parent 9617a87 commit 1ffb508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/background/hints/hintsAllocator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export async function reclaimHintsFromOtherFrames(
frameId: number,
amount: number
) {
await withStack(tabId, async (stack) => {
return withStack(tabId, async (stack) => {
const frames = await browser.webNavigation.getAllFrames({ tabId });
const otherFramesIds = frames
.map((frame) => frame.frameId)
Expand Down

0 comments on commit 1ffb508

Please sign in to comment.