chore(url): updated old urls for other external apps

This commit is contained in:
2026-03-10 23:37:30 +01:00
parent 1b8053faa3
commit c1fa2a13e1
5 changed files with 9 additions and 9 deletions
@@ -67,7 +67,7 @@ const props = defineProps({
const mainStore = useMainStore();
const tabliceZbiorczeHref = computed(() => {
let url = `https://tablice-td2.web.app/?station=${props.station!.name}`;
let url = `https://tablice-td2.spythere.eu/?station=${props.station!.name}`;
if (props.chosenCheckpoint) url += `&checkpoint=${props.chosenCheckpoint}`;
return url;
@@ -81,7 +81,7 @@ const pragotronHref = computed(() => {
});
const generatorHref = computed(() => {
return `https://generator-td2.web.app/?sceneryId=${props.onlineScenery!.name}|${props.onlineScenery!.region}`;
return `https://generator-td2.spythere.eu/?sceneryId=${props.onlineScenery!.name}|${props.onlineScenery!.region}`;
});
</script>