Skip to content

Commit

Permalink
remove unused variables -- #421
Browse files Browse the repository at this point in the history
  • Loading branch information
tantaman committed May 26, 2023
1 parent 261fa40 commit f3c98b7
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/editor/OperatingTableSlide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function OperatingTableSlide({
useBind(previewTheme, ["bg_colorset", "fontset"]);
useBind(appState, ["editor_mode"]);
const container = useRef<HTMLDivElement | null>(null);
const [selectionBox, setSelectionBox] = useState<BoundingBox | null>(null);
const [_selectionBox, setSelectionBox] = useState<BoundingBox | null>(null);

const { DragSelection } = useSelectionContainer({
eventsElement: container.current,
Expand Down
1 change: 0 additions & 1 deletion src/components/editor/markdown/TextEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
memo,
useCallback,
useEffect,
useLayoutEffect,
useRef,
useState,
} from "react";
Expand Down
1 change: 0 additions & 1 deletion src/domain/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {
} from "@vlcn.io/react";
import { IID_of } from "../id";
import {
AnyComponent,
AnyComponentID,
Deck,
Presenter,
Expand Down

0 comments on commit f3c98b7

Please sign in to comment.