bun run format

This commit is contained in:
2026-01-27 19:43:32 -03:00
parent 37f1b46306
commit e1864660a7
19 changed files with 115 additions and 121 deletions
+10 -7
View File
@@ -13,13 +13,16 @@ export async function obtenerSeguidosPorUsuario(
const fetchFunc = fetch2 || fetch;
const skip = (page - 1) * limit;
const response = await fetchFunc(`${get(apiBase)}/api/users/${id}/following?skip=${skip}&limit=${limit}`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${get(sesionStore)?.accessToken}`
const response = await fetchFunc(
`${get(apiBase)}/api/users/${id}/following?skip=${skip}&limit=${limit}`,
{
method: 'GET',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${get(sesionStore)?.accessToken}`
}
}
});
);
if (!response.ok) {
return null;
@@ -30,4 +33,4 @@ export async function obtenerSeguidosPorUsuario(
} catch (error) {
return null;
}
}
}