mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-29 17:07:24 +02:00
authenticate: add additional error details for hmac errors (#3878)
This commit is contained in:
parent
92b50683ff
commit
bfcd15435f
4 changed files with 29 additions and 7 deletions
|
@ -62,6 +62,11 @@ export const ErrorPage: FC<ErrorPageProps> = ({ data }) => {
|
|||
{data?.status || 500}{" "}
|
||||
{data?.statusText || "Internal Server Error"}
|
||||
</AlertTitle>
|
||||
{data?.description ? (
|
||||
<Markdown>{data.description}</Markdown>
|
||||
) : (
|
||||
<></>
|
||||
)}
|
||||
</Alert>
|
||||
</Box>
|
||||
{!!data?.errorMessageFirstParagraph && (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue