Skip to content

Commit

Permalink
fix(lb-components): Fix type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lihqi committed Oct 30, 2024
1 parent 5d2349b commit a8e85dc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ const BoxTrackIDInput = () => {
}}
>
<span>{t('CurrentBoxTrackIDs')}</span>
{hasSelectedBoxTrackID && selectedBoxTrackID !== undefined && (
{hasSelectedBoxTrackID && (
<BatchUpdateModal
id={selectedBoxTrackID}
id={selectedBoxTrackID as number}
updateCurrentPolygonList={(value) => updateCurrentPolygonList(value)}
/>
)}
Expand Down

0 comments on commit a8e85dc

Please sign in to comment.