We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdc96e1 commit 0daa163Copy full SHA for 0daa163
apps/frontend/src/components/launches/add.edit.model.tsx
@@ -538,7 +538,7 @@ export const AddEditModal: FC<{
538
disableForm={true}
539
>
540
<option value="">Selected Customer</option>
541
- {uniqBy(ints, (u) => u?.customer?.name).map((p) => (
+ {uniqBy(ints, (u) => u?.customer?.name).filter(f => f.customer?.name).map((p) => (
542
<option key={p.customer?.id} value={p.customer?.id}>
543
Customer: {p.customer?.name}
544
</option>
0 commit comments