Skip to content

Commit

Permalink
Bump prettier from 3.3.2 to 3.3.3 (#1804)
Browse files Browse the repository at this point in the history
* Bump prettier from 3.3.2 to 3.3.3

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] <support@github.com>

* Fir formatting

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: iamacook <aaron@safe.global>
  • Loading branch information
dependabot[bot] and iamacook authored Aug 6, 2024
1 parent e2c44f7 commit 7bfdc2a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.4",
"jest": "29.7.0",
"prettier": "^3.3.2",
"prettier": "^3.3.3",
"source-map-support": "^0.5.20",
"supertest": "^7.0.0",
"ts-jest": "29.2.4",
Expand Down
4 changes: 3 additions & 1 deletion src/routes/safes/safes.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,9 @@ export class SafesService {
)
.map((tx) => {
const isMultisig = 'safeTxHash' in tx && tx.safeTxHash !== undefined;
return isMultisig ? tx.modified ?? tx.submissionDate : tx.executionDate;
return isMultisig
? (tx.modified ?? tx.submissionDate)
: tx.executionDate;
});

return max(dates) ?? null;
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6839,12 +6839,12 @@ __metadata:
languageName: node
linkType: hard

"prettier@npm:^3.3.2":
version: 3.3.2
resolution: "prettier@npm:3.3.2"
"prettier@npm:^3.3.3":
version: 3.3.3
resolution: "prettier@npm:3.3.3"
bin:
prettier: bin/prettier.cjs
checksum: 10/83214e154afa5aa9b664c2506640212323eb1376b13379b2413dc351b7de0687629dca3f00ff2ec895ebd7e3a2adb7d7e231b6c77606e2358137f2150807405b
checksum: 10/5beac1f30b5b40162532b8e2f7c3a4eb650910a2695e9c8512a62ffdc09dae93190c29db9107fa7f26d1b6c71aad3628ecb9b5de1ecb0911191099be109434d7
languageName: node
linkType: hard

Expand Down Expand Up @@ -7279,7 +7279,7 @@ __metadata:
lodash: "npm:^4.17.21"
nestjs-cls: "npm:^4.4.0"
postgres: "npm:^3.4.4"
prettier: "npm:^3.3.2"
prettier: "npm:^3.3.3"
redis: "npm:^4.7.0"
reflect-metadata: "npm:^0.2.2"
rxjs: "npm:^7.8.1"
Expand Down

0 comments on commit 7bfdc2a

Please sign in to comment.