2api
feat: configurable stream stall timeout + per-provider UI
88c4c60
Raw
History Blame Contribute Delete
267 Bytes
import { getMachineId } from "@/shared/utils/machine";
import EndpointPageClient from "./endpoint/EndpointPageClient";
export default async function DashboardPage() {
const machineId = await getMachineId();
return <EndpointPageClient machineId={machineId} />;
}