nsarrazin's picture
nsarrazin HF Staff
Community tools (#1250)
0c3e3b2 unverified
raw
history blame
311 Bytes
// check if user is earlyAccess else redirect to base
import { base } from "$app/paths";
import { redirect } from "@sveltejs/kit";
// XXX: feature_flag_tools
export async function load({ parent }) {
const { user } = await parent();
if (user?.isEarlyAccess) {
return {};
}
redirect(302, `${base}/`);
}