Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/components/breadcrumbs/BreadcrumbNavigator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ const router = useRouter();
const steps = computed<Breadcrumb[]>(() => {
return (router.currentRoute.value.meta.breadcrumbs || []) as Breadcrumb[];
});

function printRoute() {
console.log(router.currentRoute.value);
}
</script>

<template>
Expand Down
1 change: 0 additions & 1 deletion src/components/config-components/ConfigSelectionLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ function editConfig(file: ConfigFile) {
}

function openConfig(file: ConfigFile) {
console.log(file.getPath());
LinkProvider.instance.openLink(`file://${file.getPath()}`);
}

Expand Down
6 changes: 0 additions & 6 deletions src/components/modals/launch-type/LaunchTypeModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,7 @@ function closeModal() {
}

async function updateAndClose() {
console.debug(
"Updating launch type for game.",
`Active game in Vuex: "${store.state.activeGame.settingsIdentifier}".`,
`Active game in local ref: "${activeGame.value.settingsIdentifier}".`,
);
const settings = await ManagerSettings.getSingleton(activeGame.value);
settings.logActiveGameInDexieStore();
await settings.setLaunchType(launchOption.value);
closeModal();
}
Expand Down
2 changes: 0 additions & 2 deletions src/pages/Profiles.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,6 @@ async function backToGameSelection() {
}

onMounted( async () => {
console.debug("Profiles view entered with active game", store.state.activeGame.settingsIdentifier);

const settings = await store.getters.settings;
await settings.load();

Expand Down
4 changes: 0 additions & 4 deletions src/r2mm/manager/ManagerSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,4 @@ export default class ManagerSettings {
ManagerSettings.CONTEXT.global.previewPanelWidth = width;
await this.save();
}

public logActiveGameInDexieStore() {
console.debug(`Active game in Dexie store: "${ManagerSettings.DEXIE_STORE.activeGame.settingsIdentifier}".`);
}
}
1 change: 0 additions & 1 deletion src/r2mm/manager/SettingsDexieStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ export default class SettingsDexieStore extends Dexie {
})

this.activeGame = game;
console.debug("SettingsDexieStore created with active game", this.activeGame.settingsIdentifier);
this.global = this.table("value");
this.games = this.table("games");
}
Expand Down
Loading