Skip to content

Commit 3fe4308

Browse files
committed
refactor: 빈 문자열 사용 제거거
1 parent 1bd2153 commit 3fe4308

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

apps/frontend/src/features/canvas/ui/Canvas/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export function Canvas({ className }: CanvasProps) {
6060
}, [users]);
6161

6262
return (
63-
<div className={cn("", className)} onMouseMove={handleMouseMove}>
63+
<div className={cn(className)} onMouseMove={handleMouseMove}>
6464
<ReactFlow
6565
nodes={nodes}
6666
edges={edges}

apps/frontend/src/features/editor/ui/Editor/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ export function Editor({ ydoc, provider }: EditorProp) {
4949
return (
5050
<EditorRoot>
5151
<EditorContent
52-
className=""
5352
enableContentCheck={true}
5453
onContentError={({ disableCollaboration }) => {
5554
disableCollaboration();

apps/frontend/src/shared/ui/Emoji/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ export function Emoji({ emoji, width, height, fontSize }: EmojiProps) {
1414
if (!emoji)
1515
return (
1616
<FileText
17-
className={cn("", width, height)}
17+
className={cn(width, height)}
1818
strokeWidth="1.5px"
1919
color="#91918e"
2020
/>
2121
);
2222

23-
return <div className={cn("", width, height, fontSize)}>{emoji}</div>;
23+
return <div className={cn(width, height, fontSize)}>{emoji}</div>;
2424
}

0 commit comments

Comments
 (0)