Skip to content

Commit

Permalink
Merge pull request #603 from namecheap/feat/unload-app
Browse files Browse the repository at this point in the history
fix(ilc client): correct exposed method unloadApp
  • Loading branch information
stas-nc authored Sep 6, 2024
2 parents 92f360b + ced6538 commit 0dca47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ilc/client/Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ export class Client {

Object.assign(window.ILC, {
loadApp: this.#bundleLoader.loadApp.bind(this.#bundleLoader),
unloadApp: this.#bundleLoader.unloadApp.bind(this.#bundleLoader),
unloadApp: this.unloadApp.bind(this),
navigate: this.#router.navigateToUrl.bind(this.#router),
onIntlChange: this.#addIntlChangeHandler.bind(this),
onRouteChange: this.#addRouteChangeHandlerWithDispatch.bind(this),
Expand Down

0 comments on commit 0dca47d

Please sign in to comment.