Skip to content

Commit

Permalink
Merge pull request #42921 from s77rt/s77rt-do-not-allow-invalid-locat…
Browse files Browse the repository at this point in the history
…ion-account-combo-ts-fix

Fix entity select page footer styles
  • Loading branch information
lakchote authored May 31, 2024
2 parents 715f3da + c97ffd3 commit f8a9176
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ function Footer({isTaxEnabled, isLocationsEnabled}: {isTaxEnabled: boolean; isLo
}

return (
<View style={[styles.flex1, styles.alignItemsCenter, styles.gap2, styles.mt1]}>
{isTaxEnabled && <Text style={[styles.mutedNormalTextLabel, styles.pt2]}>{translate('workspace.qbo.outOfPocketTaxEnabledDescription')}</Text>}
{isLocationsEnabled && <Text style={styles.mutedTextLabel}>{translate('workspace.qbo.outOfPocketLocationEnabledDescription')}</Text>}
<View style={[styles.gap2, styles.mt2]}>
{isTaxEnabled && <Text style={styles.mutedNormalTextLabel}>{translate('workspace.qbo.outOfPocketTaxEnabledDescription')}</Text>}
{isLocationsEnabled && <Text style={styles.mutedNormalTextLabel}>{translate('workspace.qbo.outOfPocketLocationEnabledDescription')}</Text>}
</View>
);
}
Expand Down

0 comments on commit f8a9176

Please sign in to comment.