@codeleap/mobile 1.9.23 → 1.9.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codeleap/mobile",
3
- "version": "1.9.23",
3
+ "version": "1.9.24",
4
4
  "main": "src/index.ts",
5
5
  "author": "Paulo Henrique De Souza <paulosouza300272@gmail.com>",
6
6
  "license": "UNLICENSED",
@@ -41,7 +41,8 @@ export const Touchable: React.FC<TouchableProps> = forwardRef<
41
41
  variants,
42
42
  })
43
43
 
44
- const { logger } = useCodeleapContext()
44
+ // const { logger } = useCodeleapContext() // NOTE for some reason this does not work in actual projects
45
+
45
46
  const press = () => {
46
47
  if (!onPress) { throw { message: 'No onPress passed to touchable', touchableProps } }
47
48