Skip to content

Commit

Permalink
small lint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
fabian-bizfactory committed Aug 28, 2023
1 parent 4a18929 commit 9475ac1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ const FormConceptGroup = (props: Props) => {
if (movedFromFieldName === props.fieldName) {
const willConceptMoveUp =
i > movedFromAndIdx &&
props.value[movedFromAndIdx].concepts.length == 1;
props.value[movedFromAndIdx].concepts.length === 1;
if (willConceptMoveUp) {
insertIndex = i - 1;
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/js/ui-components/Dropzone.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import styled from "@emotion/styled";
import { ForwardedRef, forwardRef, ReactNode, useEffect } from "react";
import { ForwardedRef, forwardRef, ReactNode } from "react";
import { DropTargetMonitor, useDrop } from "react-dnd";

import { DNDType } from "../common/constants/dndTypes";
Expand Down

0 comments on commit 9475ac1

Please sign in to comment.