export const load = async ({ locals }) => { const getTopAnalyst = async () => { const { apiURL, apiKey, user } = locals; const response = await fetch(apiURL + "/top-analysts", { method: "GET", headers: { "Content-Type": "application/json", "X-API-KEY": apiKey, }, }); let output = await response?.json(); output = user?.tier !== "Pro" ? output?.reverse()?.slice(0, 6) : output; return output; }; // Make sure to return a promise return { getTopAnalyst: await getTopAnalyst(), }; };