Compare commits

...

2 Commits

Author SHA1 Message Date
f3798b25b2 Merge remote-tracking branch 'origin/main' 2025-03-11 15:36:10 -04:00
da76ea18a8 hotfix: i'd rather not feth2ch 2025-03-11 15:36:05 -04:00

View File

@ -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);