error fixes by gpt

This commit is contained in:
Phil Leon Kersting
2025-07-25 11:26:19 +02:00
parent 93d535dad9
commit e9e3343f26
7 changed files with 142 additions and 190 deletions

View File

@@ -2,7 +2,7 @@ import Cookies from "js-cookie";
import { toast, type ToastOptions } from "react-toastify";
export const greeting = () => {
return Cookies.get("name") ?? "Login";
return Cookies.get("username") ?? "Login";
};
export const loadTheme = () => {