Skip to content

Commit

Permalink
fix: yarn lock and prettier lint
Browse files Browse the repository at this point in the history
  • Loading branch information
keellyp committed Sep 18, 2024
1 parent 60b92db commit 31f5fc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/WalletForm/WalletForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ const WalletForm = () => {
interval: trigger === RecurringTransactionTriggerEnum.Interval ? interval : null,
startedAt:
trigger === RecurringTransactionTriggerEnum.Interval
? startedAt ?? DateTime.now().toISO()
? (startedAt ?? DateTime.now().toISO())
: null,
thresholdCredits:
trigger === RecurringTransactionTriggerEnum.Threshold ? thresholdCredits : null,
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6423,7 +6423,7 @@ expect@^29.0.0, expect@^29.7.0:
jest-message-util "^29.7.0"
jest-util "^29.7.0"

express@^4.17.3, express@^4.19.2:
express@^4.17.3, express@^4.20.0:
version "4.21.0"
resolved "https://registry.yarnpkg.com/express/-/express-4.21.0.tgz#d57cb706d49623d4ac27833f1cbc466b668eb915"
integrity sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==
Expand Down

0 comments on commit 31f5fc6

Please sign in to comment.