Skip to content

Commit

Permalink
chore(deps-dev): bump prettier from 3.3.2 to 3.3.3 in /dev-client (#1757
Browse files Browse the repository at this point in the history
)

* chore(deps-dev): bump prettier from 3.3.2 to 3.3.3 in /dev-client

Bumps [prettier](https://github.com/prettier/prettier) from 3.3.2 to 3.3.3.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.2...3.3.3)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* style: reformat JS with prettier 3.3.3

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Paul Schreiber <[email protected]>
  • Loading branch information
dependabot[bot] and paulschreiber authored Jul 16, 2024
1 parent 4c2cb81 commit a48b9c9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
9 changes: 4 additions & 5 deletions dev-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dev-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-expo": "~51.0.3",
"prettier": "^3.3.2",
"prettier": "^3.3.3",
"react-devtools": "^5.3.1",
"react-native-svg-transformer": "^1.5.0",
"react-test-renderer": "18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion dev-client/src/components/util/nativeBaseAdapters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export const convertDimensionProp = (
};

export const convertColorProp = (color: ColorValue | ThemeColor | undefined) =>
typeof color === 'string' ? getByKey(theme.colors, color) ?? color : color;
typeof color === 'string' ? (getByKey(theme.colors, color) ?? color) : color;

const keys = <O extends object>(obj: O) => Object.keys(obj) as (keyof O)[];

Expand Down

0 comments on commit a48b9c9

Please sign in to comment.