hi, i face this error in production but not at all in local env. in the global-error page i printed the error
"use client";
export default function GlobalError({
error,
}: {
error: Error & { digest?: string };
reset: () => void;
}) {
console.log(error);
So should i print error.digest to get the actual err message which has been omitted?