From 72898aa8c851fa05cc6ff828a0875b9db082d570 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 9 May 2024 11:49:30 +0200 Subject: [PATCH] Reformat (x2) --- src/routes/(auth)/register/+page.server.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/routes/(auth)/register/+page.server.ts b/src/routes/(auth)/register/+page.server.ts index 7688243..0983e6f 100644 --- a/src/routes/(auth)/register/+page.server.ts +++ b/src/routes/(auth)/register/+page.server.ts @@ -1,6 +1,10 @@ import { fail, redirect } from "@sveltejs/kit" +import { setError, superValidate } from "sveltekit-superforms" +import { zod } from "sveltekit-superforms/adapters" +import * as z from "zod" import bcrypt from "bcrypt" +import type { Actions } from "./$types" import { db } from "$lib/server/database" export const load = async ({ locals }) => { @@ -13,11 +17,6 @@ export const load = async ({ locals }) => { } } -import { setError, superValidate } from "sveltekit-superforms" -import { zod } from "sveltekit-superforms/adapters" -import * as z from "zod" -import type { Actions } from "./$types" - const signUpSchema = z.object({ username: z .string()