quick fixes

This commit is contained in:
maxDorninger
2025-06-28 23:24:53 +02:00
parent a527cb4106
commit 85e1515cb9
3 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
name: Build and Push Backend Docker Image
name: Build and Push MetadataRelay Docker Image
on:
push:

View File

@@ -1,4 +1,4 @@
name: Ruff
name: Ruff Metadata Relay
on:
push:
branches:

View File

@@ -1,11 +1,11 @@
<script lang="ts">
import { goto } from '$app/navigation';
import { PUBLIC_BASE_PATH } from '$env/dynamic/public';
import { base } from '$app/paths';
import { browser } from '$app/environment';
import { redirect } from '@sveltejs/kit';
if (browser) goto(PUBLIC_BASE_PATH + '/dashboard');
else throw redirect(307, PUBLIC_BASE_PATH + '/login');
if (browser) goto(base + '/dashboard');
else throw redirect(307, base + '/login');
</script>
<svelte:head>