sinProject-Inc/talk

View on GitHub
src/routes/(authn)/sign-in/+page.server.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { redirect } from '@sveltejs/kit'
import type { PageServerLoad } from './$types'

export const load: PageServerLoad = async ({ locals }) => {
    if (locals.user) throw redirect(302, '/')
}