Skip to content

Commit

Permalink
style: lint ์„ค์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludovico7 committed Nov 16, 2024
1 parent cd02065 commit d1c9cb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
3 changes: 1 addition & 2 deletions client/src/components/block/Block.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* eslint-disable jsx-a11y/no-static-element-interactions */
import { BlockCRDT } from "@noctaCrdt/Crdt";
import { Block as CRDTBlock, Char as CRDTChar } from "@noctaCrdt/Node";
import { Block as CRDTBlock } from "@noctaCrdt/Node";
import { BlockId } from "@noctaCrdt/NodeId";
import React, { memo, useEffect, useRef } from "react";
import { textContainerStyle, blockContainerStyle } from "./Block.style";
Expand Down
8 changes: 1 addition & 7 deletions client/src/features/editor/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,7 @@ import { BlockId } from "@noctaCrdt/NodeId";
import { useRef, useState, useCallback, useEffect } from "react";
import { Block } from "@components/block/Block";
import { useMarkdownGrammer } from "@src/hooks/useMarkdownGrammer";
import {
editorContainer,
editorTitleContainer,
editorTitle,
checkboxContainer,
checkbox,
} from "./Editor.style";
import { editorContainer, editorTitleContainer, editorTitle } from "./Editor.style";

interface EditorProps {
onTitleChange: (title: string) => void;
Expand Down

0 comments on commit d1c9cb7

Please sign in to comment.