Skip to content

Commit

Permalink
build(deps-dev): bump prettier from 3.3.2 to 3.3.3 (#1201)
Browse files Browse the repository at this point in the history
* build(deps-dev): 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] <[email protected]>

* Fix linter errors

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alexis Sgarbossa <[email protected]>
  • Loading branch information
dependabot[bot] and baires authored Jul 29, 2024
1 parent 6a71cd9 commit 9b1c94f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions helpers/reasons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const REASONS_TO_NOT_DEPLOY = [
'How could you? 🥺',
'Some people just want to watch the world burn 🔥',
"You like fire don't you?",
"The bugs are just waiting for you"
'The bugs are just waiting for you'
]

export const REASONS_FOR_THURSDAY_AFTERNOON = [
Expand Down Expand Up @@ -94,7 +94,7 @@ export const REASONS_FOR_WEEKEND = [
'Drunk development is not a good idea!',
'I see you deployed on Friday',
'Told you that Monday would be a better idea!',
"There are 2^1000 other ideas."
'There are 2^1000 other ideas.'
]

export const REASONS_FOR_DAY_BEFORE_CHRISTMAS = [
Expand Down
8 changes: 4 additions & 4 deletions 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "5.5.4"
Expand Down
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const Page: React.FC<IPage> = ({ tz, now: initialNow, initialReason }) => {

export const getServerSideProps: GetServerSideProps = async (context) => {
let timezone = Array.isArray(context.query.tz)
? context.query.tz[0] ?? Time.DEFAULT_TIMEZONE
? (context.query.tz[0] ?? Time.DEFAULT_TIMEZONE)
: context.query.tz || Time.DEFAULT_TIMEZONE

if (!Time.zoneExists(timezone)) {
Expand Down

0 comments on commit 9b1c94f

Please sign in to comment.