Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
APP_VERSION=2.5.1
APP_VERSION=2.5.2

APP_BUILD_NUMBER=427
APP_BUILD_NUMBER=428
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/428.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Sometimes the custom unit currency was not correctly displayed
1 change: 1 addition & 0 deletions fastlane/metadata/android/fr-FR/changelogs/428.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Parfois la devise personnalisée n'était pas correctement affichée
4 changes: 2 additions & 2 deletions src/hooks/usePostInvoice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export const usePostInvoice = () => {
replace: true,
state: {
isLocalInvoice,
unit: currency,
unit: unit || currency,
decimalFiat,
customNote: description
}
Expand All @@ -171,7 +171,7 @@ export const usePostInvoice = () => {
status: "open",
time: Math.round(new Date().getTime() / 1000),
input: {
unit: currency,
unit: unit || currency,
amount: decimalFiat
},
tag: "invoice-tpos",
Expand Down
Loading