Skip to content

Commit

Permalink
fix: tags not working
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroAkbal committed Mar 18, 2022
1 parent e775b99 commit 0ef7206
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions store/booru.js
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,10 @@ export const actions = {
url,
},
{ root: true }
).data
)

// This is how a final Booru Tag object looks like
const TAGS = response.map((TAG) => {
const TAGS = response.data.map((TAG) => {
return {
id: `${ ACTIVE_BOORU_DOMAIN }-${ TAG.name }`,
name: TAG.name,
Expand Down

0 comments on commit 0ef7206

Please sign in to comment.