diff --git a/frontend/app/components/shared/FetchDetailsModal/FetchDetailsModal.tsx b/frontend/app/components/shared/FetchDetailsModal/FetchDetailsModal.tsx index 09a08ae16..661c7535c 100644 --- a/frontend/app/components/shared/FetchDetailsModal/FetchDetailsModal.tsx +++ b/frontend/app/components/shared/FetchDetailsModal/FetchDetailsModal.tsx @@ -17,7 +17,11 @@ function FetchDetailsModal(props: Props) { const [resource, setResource] = useState(props.resource); const [first, setFirst] = useState(false); const [last, setLast] = useState(false); - const isXHR = resource.type === ResourceType.XHR || resource.type === ResourceType.FETCH + + const isXHR = resource.type === ResourceType.XHR + || resource.type === ResourceType.FETCH + || resource.type === ResourceType.IOS + const { sessionStore: { devTools }, settingsStore: { sessionSettings: { timezone }}, @@ -46,6 +50,7 @@ function FetchDetailsModal(props: Props) { } }; + return (