Skip to content

Commit

Permalink
Merge pull request #287 from swaroopar/feature/fixUniqueKeyException
Browse files Browse the repository at this point in the history
Feature/fix unique key exception
  • Loading branch information
iskey authored Dec 5, 2023
2 parents 2ed8c0e + 2dd6382 commit 0183e00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions src/components/content/order/create/OrderSubmit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,7 @@ function OrderSubmit(state: OrderSubmitProps): React.JSX.Element {
{state.params.map((item) =>
item.kind === 'variable' || item.kind === 'env' ? (
<OrderItem key={item.name} item={item} />
) : (
<></>
)
) : undefined
)}
</div>
<div className={'Line'} />
Expand Down
4 changes: 1 addition & 3 deletions src/components/content/order/migrate/DeploymentForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,7 @@ export const DeploymentForm = ({
{props.params.map((item) =>
item.kind === 'variable' || item.kind === 'env' ? (
<OrderItem key={item.name} item={item} />
) : (
<></>
)
) : undefined
)}
</div>
<Space size={'large'}>
Expand Down

0 comments on commit 0183e00

Please sign in to comment.