Skip to content

Commit

Permalink
Fix call of ensureLLMTaskS in MainView
Browse files Browse the repository at this point in the history
  • Loading branch information
lucksus committed Jan 23, 2025
1 parent 0a5f795 commit ff11fc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/views/main/MainView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ import { Community } from "@coasys/flux-api";
import { useRoute } from "vue-router";
import { registerNotification } from "../../utils/registerMobileNotifications";
import { ad4mConnect } from "@/ad4mConnect";
import { ensureLLMTask } from "@coasys/flux-utils";
import { ensureLLMTasks } from "@coasys/flux-utils";
export default defineComponent({
Expand Down Expand Up @@ -249,7 +249,7 @@ export default defineComponent({
},
async mounted() {
registerNotification();
ensureLLMTask();
ensureLLMTasks();
ad4mConnect.addEventListener("authstatechange", async (e) => {
let oldState = this.oldAuthState;
Expand Down

0 comments on commit ff11fc4

Please sign in to comment.