Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaskikutis committed Oct 10, 2023
1 parent daf9cd8 commit a0d2708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/core/ui/components/drop-zone-3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class DropZone3 extends React.PureComponent<IDropZoneComponentProps, ISta
onDragOver={(e) => {
e.preventDefault();

if (this.state.dragging != true) {
if (this.state.dragging !== true) {
this.setState({dragging: true});
}
}}
Expand Down

0 comments on commit a0d2708

Please sign in to comment.