\n When you encounter an error, you'll receive a link to this page for that\n specific error and we'll show you the full error text.\n
\n );\n }\n\n return (\n \n
\n The full text of the error you just encountered is:\n
\n
\n {urlify(errorMsg)}\n
\n
\n );\n}\n\nfunction ErrorDecoder(props: {|\n errorCodesString: string,\n location: {search: string},\n|}) {\n let code = null;\n let msg = '';\n\n const errorCodes = JSON.parse(props.errorCodesString);\n const parseResult = parseQueryString(props.location.search || '');\n if (parseResult != null) {\n code = parseResult.code;\n msg = replaceArgs(errorCodes[code], parseResult.args);\n }\n\n return