Skip to content

Commit

Permalink
fix for ses-xs shim: defer to appropriate delegate compartment for im…
Browse files Browse the repository at this point in the history
…port
  • Loading branch information
kriskowal committed Oct 9, 2024
1 parent e0aa5b5 commit 08138db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ses/src-xs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ const compartmentShim = `(
if (this.#noNamespaceBox) {
return this.#delegate.import(specifier);
}
return { namespace: await this.#native.import(specifier) };
return { namespace: await this.#delegate.import(specifier) };
}
/** @param {string} specifier */
Expand Down

0 comments on commit 08138db

Please sign in to comment.