Fix typo in setting name (#4567)

This commit is contained in:
Oliver 2023-04-03 23:40:52 +10:00 committed by GitHub
parent 3018087ea9
commit 4cd1d2eebe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@
* Returns the base currency used for conversion operations
*/
function baseCurrency() {
return global_settings.INVENTREE_BASE_CURRENCY || 'USD';
return global_settings.INVENTREE_DEFAULT_CURRENCY || 'USD';
}