@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
|
@@ -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
|
|