-
Notifications
You must be signed in to change notification settings - Fork 59
Open
Labels
enhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested
Description
Feature Request
Make response body section more user friendly. Mobile screen is limited and let say the response is very big, then it could hurt UX when inspecting. We can collapse the JSON value like redux-devtools.
There is also react-native-json-tree which is based on react-json-tree used by redux-devtools.
Thanks!
Additional context
const getFullRequest = () => {
const processedRequest = {
...request,
response: responseBody ? JSON.parse(responseBody) : undefined,
duration: request.duration,
};
return JSON.stringify(processedRequest, null, 2);
};
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested