"use client"; import type { ErrorProps } from "@farm.js/core"; export default function ErrorBoundary({ error, reset }: ErrorProps) { const message = error instanceof Error ? error.message : "An unexpected error occurred."; return (
ERROR / RECOVERABLE

That route did not finish loading.

{message}

Return home
); }