react-native-in-app-debugger 1.0.80 → 1.0.81

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.
package/Deeplink.tsx CHANGED
@@ -17,7 +17,7 @@ try {
17
17
  // console.error("Error importing LocalStorage:", error);
18
18
  }
19
19
 
20
- export default ({ deeplinkPrefix, onClose }) => {
20
+ export default ({ deeplinkPrefix = 'mym1-sunshine://', onClose }) => {
21
21
  const [text, setText] = React.useState("");
22
22
  const [history, setHistory] = React.useState([]);
23
23
 
package/index.jsx CHANGED
@@ -198,7 +198,7 @@ export default ({
198
198
  data={[
199
199
  "api",
200
200
  !!variables && "vars",
201
- !!deeplinkPrefix && "deeplink",
201
+ "deeplink",
202
202
  "libs",
203
203
  ...tabs.map((t) => t.title),
204
204
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-in-app-debugger",
3
- "version": "1.0.80",
3
+ "version": "1.0.81",
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": {