diff --git a/src/client/components/GatewayErrorSummary.tsx b/src/client/components/GatewayErrorSummary.tsx index f82497a94e..d912f344ef 100644 --- a/src/client/components/GatewayErrorSummary.tsx +++ b/src/client/components/GatewayErrorSummary.tsx @@ -18,10 +18,22 @@ interface GateWayErrorSummaryProps export const GatewayErrorSummary = (props: GateWayErrorSummaryProps) => { const structuredError = asStructuredError(props.gatewayError); - const fullContext = - props.shortRequestId && structuredError?.severity !== 'BAU' + const fullContext = [ + props.context, + ...(structuredError?.severity === 'CSRF' + ? [ +

+ If the problem persists, please check if you have cookies enabled. + You can find details on how to enable cookies in our{' '} + + Cookies FAQ + + . +

, + ] + : []), + ...(props.shortRequestId && structuredError?.severity !== 'BAU' ? [ - props.context,

{ Request ID: {props.shortRequestId}

, ] - : props.context; + : []), + ]; return (