Skip to content

Commit

Permalink
fix: Remove unused package
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed May 30, 2024
1 parent a6413c1 commit 9184c9d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"dependencies": {
"@libertai/libertai-js": "0.0.4",
"@quasar/extras": "^1.16.11",
"@solana/web3.js": "^1.90.0",
"aleph-sdk-ts": "^3.9.2",
"axios": "^1.2.1",
"buffer": "^6.0.3",
Expand Down
2 changes: 0 additions & 2 deletions src/stores/chats-store.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ export const useChatsStore = defineStore(CHATS_STORE_PINIA_KEY, {
// Get the partial chats of the form { id, title }
let chats = await this.chatsStore.readChats();
this.chats = chats;

},

/**
Expand Down Expand Up @@ -259,7 +258,6 @@ class ChatsStore {
await Promise.all(updatedChats);

// Done!

}

/**
Expand Down
1 change: 0 additions & 1 deletion src/stores/knowledge-store.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export const useKnowledgeStore = defineStore(KNOWLEDGE_STORE_PINIA_KEY, {
}
await Promise.all(addedDocuments);
this.documents = docs;

},
async addDocument(title, content, tags = []) {
let doc = await this.knowledgeStore.addDocument(title, content, tags);
Expand Down

0 comments on commit 9184c9d

Please sign in to comment.