Skip to content

Commit e5eddc8

Browse files
fix: iOS test
1 parent 52e5e0e commit e5eddc8

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/modules/Instabug.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
//todo: remove all logs tagged with 'Andrew' in the file
21
import {
32
AppState,
43
type AppStateStatus,

src/utils/InstabugUtils.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ export function isContentTypeNotAllowed(contentType: string) {
171171
return allowed.every((type) => !contentType.includes(type));
172172
}
173173

174-
//todo: remove all logs tagged with 'Andrew' in the file
175174
export const reportNetworkLog = (network: NetworkData) => {
176175
if (Platform.OS === 'android') {
177176
const requestHeaders = JSON.stringify(network.requestHeaders);
@@ -214,7 +213,7 @@ export const reportNetworkLog = (network: NetworkData) => {
214213
}
215214
} else {
216215
NativeInstabug.networkLogIOS(
217-
network.url + '/JS/Andrew',
216+
network.url,
218217
network.method,
219218
network.requestBody,
220219
network.requestBodySize,

0 commit comments

Comments
 (0)