Skip to content

Commit

Permalink
fix: remove await fetchfeatured
Browse files Browse the repository at this point in the history
  • Loading branch information
acnormun committed Apr 9, 2024
1 parent 32fbe59 commit 972f39b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/modules/appType/appType.store.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export const app_type = defineStore('appType', {
this.errorFeaturedApps = null;
this.featuredApps = null;
try {
const data = await appType.fetchFeatured();
const data = appType.fetchFeatured();
this.featuredApps = data;
this.loadingFeaturedApps = false;
} catch (err) {
Expand Down

0 comments on commit 972f39b

Please sign in to comment.