diff --git a/app/account/dashboard/settings/page.tsx b/app/account/dashboard/settings/page.tsx index 02b8775..c3715d7 100644 --- a/app/account/dashboard/settings/page.tsx +++ b/app/account/dashboard/settings/page.tsx @@ -27,7 +27,7 @@ export default function Settings() { const fetchSettings = async () => { try { setLoading(true); - const response = await feth2ch('/api/users/settings'); + const response = await fetch('/api/users/settings'); if (response.ok) { const data = await response.json(); setSettings(data);