react-native-in-app-debugger 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/Api/index.jsx +1 -1
  2. package/package.json +1 -1
package/Api/index.jsx CHANGED
@@ -159,7 +159,7 @@ export default (props) => {
159
159
  .filter(
160
160
  (a) =>
161
161
  !filter ||
162
- JSON.stringify(a.request).toLowerCase().includes(filter)
162
+ JSON.stringify(a.request.url).toLowerCase().includes(filter)
163
163
  )
164
164
  .filter((a) => !showBookmarkOnly || props.bookmarks[a.id])
165
165
  .map((data) => ({ data: [data], id: data.id }))}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-in-app-debugger",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "This library's main usage is to be used by Non-Technical testers during UAT, SIT or any testing phase.",
5
5
  "main": "index.jsx",
6
6
  "scripts": {