From a0d2708ae69399c10246160f44719a11c08fc502 Mon Sep 17 00:00:00 2001 From: Tomas Kikutis Date: Tue, 10 Oct 2023 10:33:24 +0200 Subject: [PATCH] fix lint --- scripts/core/ui/components/drop-zone-3.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/core/ui/components/drop-zone-3.tsx b/scripts/core/ui/components/drop-zone-3.tsx index b3f3e6d541..5e2aeff6e6 100644 --- a/scripts/core/ui/components/drop-zone-3.tsx +++ b/scripts/core/ui/components/drop-zone-3.tsx @@ -92,7 +92,7 @@ export class DropZone3 extends React.PureComponent { e.preventDefault(); - if (this.state.dragging != true) { + if (this.state.dragging !== true) { this.setState({dragging: true}); } }}