- {props.error.mostRecentRequest ? (
+ {mostRecentRequest ? (
-
Request: {props.error.mostRecentRequest.operationName}
+
Request: {mostRecentRequest.operationName}
Variables:
- {JSON.stringify(
- props.error.mostRecentRequest.variables,
- null,
- ' '
- )}
+ {JSON.stringify(mostRecentRequest.variables, null, ' ')}
@@ -250,13 +264,13 @@ function ResponseRequest(props: { error: ErrorWithRequestMeta }) {
onClick={() => setOpenQuery(!openQuery)}
className={openQuery ? 'open' : 'preview'}
>
- {props.error.mostRecentRequest.query}
+ {mostRecentRequest.query}
) : null}
- {props.error.mostRecentRequest ? (
+ {mostRecentResponse ? (
Response
@@ -266,7 +280,7 @@ function ResponseRequest(props: { error: ErrorWithRequestMeta }) {
onClick={() => setOpenResponse(!openResponse)}
className={openResponse ? 'open' : 'preview'}
>
- {JSON.stringify(props.error.mostRecentResponse, null, ' ')}
+ {JSON.stringify(mostRecentResponse, null, ' ')}