fix(ui): fix network request display

This commit is contained in:
nick-delirium 2023-01-24 12:46:40 +01:00
parent 1901f7c8a0
commit ea8d243d29

View file

@ -17,7 +17,7 @@ function FetchDetailsModal(props: Props) {
const [resource, setResource] = useState(props.resource);
const [first, setFirst] = useState(false);
const [last, setLast] = useState(false);
const isXHR = resource.type === TYPES.XHR
const isXHR = resource.type === TYPES.XHR || resource.type === TYPES.FETCH
const {
sessionStore: { devTools },
settingsStore: { sessionSettings: { timezone }},