diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 929a46d8..662993cf 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1511,4 +1511,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: 0ab74fecad6ac2e35f8eab32fe5772c19d2015b2 -COCOAPODS: 1.14.3 +COCOAPODS: 1.15.2 diff --git a/example/src/App.tsx b/example/src/App.tsx index e7cbbb5a..e4f36cbd 100644 --- a/example/src/App.tsx +++ b/example/src/App.tsx @@ -21,7 +21,6 @@ import {open} from '@op-engineering/op-sqlite'; import clsx from 'clsx'; import {preparedStatementsTests} from './tests/preparedStatements.spec'; import {constantsTests} from './tests/constants.spec'; -import performance from 'react-native-performance'; const StyledScrollView = styled(ScrollView, { props: { @@ -53,11 +52,11 @@ export default function App() { }, []); const querySingleRecord = async () => { - let start = performance.now(); + // let start = performance.now(); await querySingleRecordOnLargeDB(); - let end = performance.now(); + // let end = performance.now(); - setSingleRecordTime(end - start); + // setSingleRecordTime(end - start); }; const createLargeDb = async () => {