Skip to content

Commit f56c0ac

Browse files
authored
Merge pull request #1576 from RoboSats/dependabot/npm_and_yarn/mobile/typescript-eslint/parser-8.11.0
chore(deps-dev): bump @typescript-eslint/parser from 8.10.0 to 8.11.0 in /mobile
2 parents 9770cd8 + 325468c commit f56c0ac

File tree

3 files changed

+134
-12
lines changed

3 files changed

+134
-12
lines changed

frontend/src/components/Charts/DepthChart/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ const DepthChart: React.FC<DepthChartProps> = ({
6868
useEffect(() => {
6969
if (Object.values(federation.book).length > 0) {
7070
const enriched = Object.values(federation.book).map((order) => {
71-
if (order && order.coordinatorShortAlias != null && order.currency) {
72-
const limits = federation.getCoordinator(order.coordinatorShortAlias).limits;
71+
if (order?.coordinatorShortAlias && order?.currency) {
72+
const limits = federation.getCoordinator(order.coordinatorShortAlias)?.limits;
7373

7474
const originalPrice =
7575
(limits[order.currency]?.price ?? 0) * (1 + parseFloat(order.premium) / 100);

mobile/package-lock.json

+131-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mobile/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@types/react-native": "^0.71.3",
2828
"@types/react-test-renderer": "^18.0.0",
2929
"@typescript-eslint/eslint-plugin": "^8.10.0",
30-
"@typescript-eslint/parser": "^8.10.0",
30+
"@typescript-eslint/parser": "^8.11.0",
3131
"babel-jest": "^29.7.0",
3232
"eslint": "^8.57.1",
3333
"eslint-config-prettier": "^9.1.0",

0 commit comments

Comments
 (0)