Update prettier, format codebase

This commit is contained in:
Aaron Po
2026-03-15 22:13:35 -04:00
parent 00b696b3f0
commit a580fc6cbd
43 changed files with 2000 additions and 1844 deletions

View File

@@ -1,25 +1,25 @@
import { Toaster } from "react-hot-toast";
import { Toaster } from 'react-hot-toast';
export default function ToastProvider() {
return (
<Toaster
position="top-right"
toastOptions={{
duration: 3500,
className: "rounded-box border border-base-300 bg-base-100 text-base-content shadow-lg",
success: {
iconTheme: {
primary: "var(--color-success)",
secondary: "var(--color-success-content)",
},
},
error: {
iconTheme: {
primary: "var(--color-error)",
secondary: "var(--color-error-content)",
},
},
}}
/>
);
return (
<Toaster
position="top-right"
toastOptions={{
duration: 3500,
className: 'rounded-box border border-base-300 bg-base-100 text-base-content shadow-lg',
success: {
iconTheme: {
primary: 'var(--color-success)',
secondary: 'var(--color-success-content)',
},
},
error: {
iconTheme: {
primary: 'var(--color-error)',
secondary: 'var(--color-error-content)',
},
},
}}
/>
);
}