Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
FrederikBolding committed Jun 13, 2024
1 parent 274c508 commit cc677f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/scripts/offscreen.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { OffscreenCommunicationTarget } from "../../shared/constants/offscreen-communication";
import { OffscreenCommunicationTarget } from '../../shared/constants/offscreen-communication';

/**
* Creates an offscreen document that can be used to load additional scripts
Expand Down Expand Up @@ -29,7 +29,7 @@ export async function createOffscreen() {
resolve();
}
});
})
});

console.debug('Offscreen iframe loaded');
}
2 changes: 1 addition & 1 deletion offscreen/scripts/offscreen.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { BrowserRuntimePostMessageStream } from '@metamask/post-message-stream';
import { ProxySnapExecutor } from '@metamask/snaps-execution-environments';
import { OffscreenCommunicationTarget } from '../../shared/constants/offscreen-communication';
import initLedger from './ledger';
import initTrezor from './trezor';
import initLattice from './lattice';
import { OffscreenCommunicationTarget } from '../../shared/constants/offscreen-communication';

initLedger();
initTrezor();
Expand Down

0 comments on commit cc677f2

Please sign in to comment.