Skip to content

Commit

Permalink
fixed lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vl-santoshkumaralli committed Nov 27, 2024
1 parent 56bf764 commit 3324ff0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/seatmaps-client/src/TicketMap/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -651,9 +651,9 @@ export class TicketMap extends Component<Props & DefaultProps, State> {
onResetZoom={this.handleResetZoom}
/>
)}
{this.state.isTouchDevice && this.props.mouseControlEnabled && this.props.showZoomHelper && (
<ZoomHelper />
)}
{this.state.isTouchDevice &&
this.props.mouseControlEnabled &&
this.props.showZoomHelper && <ZoomHelper />}
</div>
);
}
Expand Down

0 comments on commit 3324ff0

Please sign in to comment.