fix/select customer

This commit is contained in:
Enno Gelhaus 2025-08-01 13:06:12 +02:00
parent de44231051
commit 0292965366
2 changed files with 1 additions and 2 deletions

View file

@ -33,7 +33,7 @@ export const SelectCustomer: FC<{
{uniqBy(integrations, (u) => u?.customer?.name)
.filter((f) => f.customer?.name)
.map((p) => (
<option key={p.customer?.id} value={p.customer?.id}>
<option key={p.customer?.id} value={p.customer?.id} data-sentry-mask>
{t('customer', 'Customer:')}
{p.customer?.name}
</option>

View file

@ -473,7 +473,6 @@ export const ManageModal: FC<AddEditModalProps> = (props) => {
<SelectCustomer
onChange={changeCustomer}
integrations={integrations}
data-sentry-mask
/>
)}
</div>