From da76ea18a810b6d737965f0940e5c6b2f4eabcf8 Mon Sep 17 00:00:00 2001 From: Aidan Honor Date: Tue, 11 Mar 2025 15:36:05 -0400 Subject: [PATCH] hotfix: i'd rather not feth2ch --- app/account/dashboard/settings/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);