refactor: rearrange early return for better readability in CommentInstance
This commit is contained in:
@@ -10,7 +10,6 @@ function CommentInstance({ comment }: { comment: CommentSchema }) {
|
||||
const [selectedComment, setSelectedComment] = useState<CommentSchema | null>(null);
|
||||
const [transformMode, setTransformMode] = useState<"translate" | "rotate" | null>(null);
|
||||
|
||||
if (comment.state === 'inactive' || isPlaying) return null;
|
||||
|
||||
useEffect(() => {
|
||||
const handleKeyDown = (e: KeyboardEvent) => {
|
||||
@@ -28,6 +27,8 @@ function CommentInstance({ comment }: { comment: CommentSchema }) {
|
||||
return () => window.removeEventListener("keydown", handleKeyDown);
|
||||
}, [selectedComment]);
|
||||
|
||||
if (comment.state === 'inactive' || isPlaying) return null;
|
||||
|
||||
return (
|
||||
|
||||
<>
|
||||
|
||||
Reference in New Issue
Block a user