unsetLinkWith(hook) {
    this.hooksToListen.delete(hook);
    hook.off("startLoading", () => this.setReady(false));
    hook.off("ready", this.checkTimeLimits.bind(this));
  },