From 64b880c3fd963dc14e76b191b9022e50da5c78c6 Mon Sep 17 00:00:00 2001 From: ruben-rebelo Date: Tue, 27 Feb 2024 16:15:09 +0000 Subject: [PATCH] fix: Condition for disabling currency for workspace was wrong --- src/pages/workspace/WorkspaceProfilePage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/workspace/WorkspaceProfilePage.tsx b/src/pages/workspace/WorkspaceProfilePage.tsx index 48dfe10a2a0e..b6bff8e6133d 100644 --- a/src/pages/workspace/WorkspaceProfilePage.tsx +++ b/src/pages/workspace/WorkspaceProfilePage.tsx @@ -148,7 +148,7 @@ function WorkspaceProfilePage({policy, currencyList = {}, route}: WorkSpaceProfi title={formattedCurrency} description={translate('workspace.editor.currencyInputLabel')} shouldShowRightIcon={!readOnly} - disabled={hasVBA ?? readOnly} + disabled={hasVBA ? true : readOnly} wrapperStyle={styles.sectionMenuItemTopDescription} onPress={onPressCurrency} shouldGreyOutWhenDisabled={false}