We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e87f4c commit 0ed1156Copy full SHA for 0ed1156
src/components/customers/CustomerSettings.tsx
@@ -324,7 +324,10 @@ export const CustomerSettings = ({ customerId }: CustomerSettingsProps) => {
324
{!!customer?.billingConfiguration?.documentLocale
325
? DocumentLocales[customer?.billingConfiguration?.documentLocale]
326
: translate('text_1728374331992d2alok9y3kr', {
327
- value: DocumentLocales['en'],
+ value:
328
+ DocumentLocales[
329
+ organization?.billingConfiguration?.documentLocale || 'en'
330
+ ],
331
})}
332
</Typography>
333
</SettingsListItem>
0 commit comments