Skip to content

Commit

Permalink
fix: eslint issues and images
Browse files Browse the repository at this point in the history
  • Loading branch information
BernardoSM committed Nov 26, 2023
1 parent eb53ada commit 9254f96
Show file tree
Hide file tree
Showing 4 changed files with 356 additions and 401 deletions.
2 changes: 2 additions & 0 deletions apps/app/stores/api/creators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ export const useCreatorsStore = defineStore("creators", {
async getImages() {
try {
const response = await this.$api(`/creators/images`);
if (!response.images) return;

this.images = response.images;
this.filesSize = response.filesSize;
return response;
Expand Down
2 changes: 1 addition & 1 deletion apps/www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@nuxtjs/fontaine": "^0.2.5",
"@types/node": "^20.10.0",
"nuxt": "^3.8.2",
"nuxt": "^3.7.3",
"nuxt-schema-org": "^2.2.0",
"nuxt-simple-robots": "^3.1.0",
"nuxt-simple-sitemap": "^3.1.4",
Expand Down
8 changes: 4 additions & 4 deletions packages/eslint-config-custom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
"lint": "eslint ."
},
"dependencies": {
"@rushstack/eslint-patch": "^1.6.0",
"@rushstack/eslint-patch": "^1.3.2",
"@typescript-eslint/parser": "^5.62.0",
"@vue/eslint-config-prettier": "^7.1.0",
"eslint": "^8.54.0",
"eslint": "^8.46.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-vue": "^9.18.1",
"eslint-plugin-vue": "^9.16.1",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"typescript": "^5.3.2",
"typescript": "^5.1.6",
"vite-plugin-eslint": "^1.8.1",
"vue-eslint-parser": "^9.3.2"
}
Expand Down
Loading

0 comments on commit 9254f96

Please sign in to comment.