Skip to content

Commit

Permalink
fix: getCollectionTags result undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronm-2112 committed Feb 2, 2024
1 parent dd46561 commit 2cc745e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/src/scripts/others/api/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ const getCurrentCollectionTags = async (account, dataset) => {
const getAllCollectionTags = async (account) => {
window.allCollectionTags = {};
try {
result = await client.get(`/collections/`, {
let result = await client.get(`/collections/`, {
params: { selected_account: account },
});
let res = result.data;
Expand Down

0 comments on commit 2cc745e

Please sign in to comment.