diff --git a/frontend/src/stores/user.ts b/frontend/src/stores/user.ts index 7e54db4..049862b 100644 --- a/frontend/src/stores/user.ts +++ b/frontend/src/stores/user.ts @@ -206,7 +206,11 @@ export const useUserStore = defineStore('userStore', { * @param app */ _userResourcePreflight(app: AppStoreInfo): boolean { - if (!this.userResource) { + if ( + !this.userResource || + !this.userResource.cpu || + !this.userResource.memory + ) { app.preflightError.push( i18n.global.t('error.failed_to_get_user_resource') );