Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
adoucoure committed May 17, 2024
1 parent c731ffa commit 8d7f963
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 22 deletions.
2 changes: 1 addition & 1 deletion src/fields/chunks/label/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import PlatformText from '../../../platform/text'
import PlatformText from '../../../platform/text/index.native.js'
import PlatformContainer from '../../../platform/container/index.native.js'

export default (props) => {
Expand Down
6 changes: 3 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { Formik } from 'formik'
import fields from './fields'
import FormulaikCache from './cache'
import yupFromSchema from './lib/yupFromSchema.js'
import PlatformContainer from './platform/container'
import PlatformText from './platform/text'
import PlatformContainer from './platform/container/index.native.js'
import PlatformText from './platform/text/index.native.js'

export default (props) => {
const {
Expand Down Expand Up @@ -98,4 +98,4 @@ export default (props) => {
<PlatformText>{error.message}</PlatformText>
</PlatformContainer>}
</React.Fragment>
}
}
18 changes: 0 additions & 18 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14036,16 +14036,6 @@ react-dev-utils@^10.2.1:
strip-ansi "6.0.0"
text-table "0.2.0"

react-dom@^16.13.1:
version "16.14.0"
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.14.0.tgz#7ad838ec29a777fb3c75c3a190f661cf92ab8b89"
integrity sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==
dependencies:
loose-envify "^1.1.0"
object-assign "^4.1.1"
prop-types "^15.6.2"
scheduler "^0.19.1"

react-error-overlay@^6.0.7:
version "6.0.11"
resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.11.tgz#92835de5841c5cf08ba00ddd2d677b6d17ff9adb"
Expand Down Expand Up @@ -14909,14 +14899,6 @@ saxes@^3.1.9:
dependencies:
xmlchars "^2.1.1"

scheduler@^0.19.1:
version "0.19.1"
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196"
integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==
dependencies:
loose-envify "^1.1.0"
object-assign "^4.1.1"

schema-to-yup@^1.12.18:
version "1.12.18"
resolved "https://registry.yarnpkg.com/schema-to-yup/-/schema-to-yup-1.12.18.tgz#3b253b315383c8e7f5026ebd2c86fa4ee5a932d6"
Expand Down

0 comments on commit 8d7f963

Please sign in to comment.