We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31e52a5 commit 38ad07cCopy full SHA for 38ad07c
2 files changed
src/background/services/paymentManager.ts
@@ -489,6 +489,9 @@ export class PaymentManager {
489
const session = stream.iter.next().value;
490
if (session) {
491
yield session;
492
+ if (!stream.isTopFrame) {
493
+ self.toNextFrame();
494
+ }
495
} else {
496
self.toNextFrame();
497
}
tests/e2e/fixtures/helpers.ts
@@ -26,7 +26,7 @@ export const BUILD_DIR = DIST_DIR;
26
// https://playwright.dev/docs/auth#basic-shared-account-in-all-tests
27
export const authFile = path.join(
28
testDir,
29
- 'test-results',
+ // 'test-results',
30
'.auth',
31
'rafiki-money.json',
32
);
0 commit comments