chore: svelte-kit-2 (#6103)

* chore: upgrade svelte

* chore: type imports

* chore: types
This commit is contained in:
Jason Rasmussen 2024-01-20 13:47:41 -05:00 committed by GitHub
parent 4ebb9974ff
commit 6e066aa220
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
108 changed files with 376 additions and 1323 deletions

View file

@ -1,7 +1,7 @@
<script lang="ts">
import { mdiClose } from '@mdi/js';
import { createEventDispatcher } from 'svelte';
import { UserAvatarColor, UserResponseDto } from '@api';
import { UserAvatarColor, type UserResponseDto } from '@api';
import CircleIconButton from '$lib/components/elements/buttons/circle-icon-button.svelte';
import FullScreenModal from '../full-screen-modal.svelte';
import UserAvatar from '../user-avatar.svelte';

View file

@ -30,7 +30,11 @@
const logOut = async () => {
resetSavedUser();
const { data } = await api.authenticationApi.logout();
goto(data.redirectUri || '/auth/login?autoLaunch=0');
if (!data.redirectUri.startsWith('/')) {
window.location.href = data.redirectUri;
} else {
goto(data.redirectUri);
}
};
</script>