Skip to content

Commit f0da60c

Browse files
committed
Fixed issues after rebase
1 parent 95167a0 commit f0da60c

2 files changed

Lines changed: 3 additions & 8 deletions

File tree

src/pages/GameSelectionScreen.vue

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,17 +91,12 @@ import { Hero } from '../components/all';
9191
import { GameInstanceType } from '../model/schema/ThunderstoreSchema';
9292
import { GameSelectionViewMode } from '../model/enums/GameSelectionViewMode';
9393
import ModalCard from '../components/ModalCard.vue';
94-
import { onMounted, provide, ref } from 'vue';
94+
import { onMounted, ref, provide } from 'vue';
9595
import { useGameSelectionComposable, gameSelectionKey } from '../components/composables/GameSelectionComposable';
9696
import GameSelectionList from '../components/game-selection/GameSelectionList.vue';
9797
import Game from '../model/game/Game';
9898
import { capitalize } from '../utils/StringUtils';
9999
import { StorePlatform as platformLabels } from '../model/platform/StorePlatform';
100-
import { computed, onMounted, reactive, ref } from 'vue';
101-
import { getStore } from '../providers/generic/store/StoreProvider';
102-
import { State } from '../store';
103-
import { useRouter } from 'vue-router';
104-
import ProtocolProvider from '../providers/generic/protocol/ProtocolProvider';
105100
import EcosystemUpdateIndicator from '../components/navigation/EcosystemUpdateIndicator.vue';
106101
107102

src/store/modules/EcosystemUpdateModule.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ActionTree, GetterTree, MutationTree } from 'vuex';
22

33
import { State as RootState } from '../../store';
4-
import { EcosystemSchema } from '../../model/schema/ThunderstoreSchema';
4+
import { EcosystemSupportedGames } from '../../model/schema/ThunderstoreSchema';
55

66
export interface EcosystemUpdateState {
77
isInProgress: boolean;
@@ -49,7 +49,7 @@ export const EcosystemUpdateModule = {
4949
try {
5050
// Re-evaluate the ecosystem schema. Future remote refresh
5151
// logic should be plugged in here.
52-
void EcosystemSchema.supportedGames;
52+
void EcosystemSupportedGames.value;
5353
} catch (e) {
5454
commit('setError', e instanceof Error ? e : new Error(String(e)));
5555
} finally {

0 commit comments

Comments
 (0)