Skip to content

Commit 9a95a88

Browse files
committed
fix: 공유 기능 수정 중 표시
1 parent a85b1e5 commit 9a95a88

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

apps/frontend/src/features/workspace/ui/ShareTool/SharePanel.tsx

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,20 @@ export function SharePanel() {
1616

1717
return (
1818
<div className="w-full">
19-
<div className="flex w-full items-center gap-2 p-1">
20-
<div className="flex-row text-sm text-slate-400">공개 범위</div>
21-
<div className="flex items-center space-x-2">
22-
<Switch
23-
checked={isPublic}
24-
onChange={setIsPublic}
25-
CheckedIcon={Globe2}
26-
UncheckedIcon={Lock}
27-
/>
19+
<div className="flex w-full flex-row justify-between p-1">
20+
<div className="flex flex-row items-center gap-2">
21+
<div className="flex-row text-sm text-slate-400">공개 범위</div>
22+
<div className="flex items-center space-x-2">
23+
<Switch
24+
checked={isPublic}
25+
onChange={setIsPublic}
26+
CheckedIcon={Globe2}
27+
UncheckedIcon={Lock}
28+
/>
29+
</div>
30+
</div>
31+
<div className="select-none flex-row text-sm text-slate-400">
32+
🚧 수정 중입니다.
2833
</div>
2934
</div>
3035
<div

0 commit comments

Comments
 (0)