aboutsummaryrefslogtreecommitdiff
path: root/ext/js/background
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-12-03 10:45:08 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-12-03 10:45:08 -0500
commit083b4749139213c6fefe80166d73f54604a85267 (patch)
tree046ee751868d35edc6f6b0a33903546f8e78d1a7 /ext/js/background
parentc563e5bfa5f4bded8901dccf2d589f89356574c9 (diff)
Fix some import orderings
Diffstat (limited to 'ext/js/background')
-rw-r--r--ext/js/background/offscreen-proxy.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/background/offscreen-proxy.js b/ext/js/background/offscreen-proxy.js
index 757d78d5..7b504855 100644
--- a/ext/js/background/offscreen-proxy.js
+++ b/ext/js/background/offscreen-proxy.js
@@ -17,8 +17,8 @@
*/
import {isObject} from '../core.js';
-import {ArrayBufferUtil} from '../data/sandbox/array-buffer-util.js';
import {ExtensionError} from '../core/extension-error.js';
+import {ArrayBufferUtil} from '../data/sandbox/array-buffer-util.js';
export class OffscreenProxy {
constructor() {