no clue why the auth started to fail...

This commit is contained in:
Chris Kruining 2025-06-02 16:32:01 +02:00
parent 6451b8cfb4
commit 20aed86123
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
2 changed files with 7 additions and 5 deletions

View file

@ -7,7 +7,10 @@ export const auth = betterAuth({
appName: "Streamarr",
basePath: "/api/auth",
logger: {
level: "info",
level: "debug",
log(level, message, ...args) {
console.log(level, message, {args});
},
},
user: {
additionalFields: {

View file

@ -1,9 +1,8 @@
import { Component, createEffect, Show } from "solid-js";
import { signIn, signOut } from "~/auth";
import { hash } from "~/utilities";
import { Component, Show } from "solid-js";
import { signIn, signOut, client } from "~/auth";
import { Avatar, Profile, User } from "../user";
import css from "./top.module.css";
import { ColorSchemePicker } from "../theme";
import css from "./top.module.css";
interface TopProps {
user: User | undefined;