Skip to content

Commit 6b84896

Browse files
authored
Merge pull request #352 from boostcampwm-2024/bug-fe-#351
배포 버전에 대한 임시적인 오류 처리
2 parents 9f686c8 + 9a95a88 commit 6b84896

File tree

4 files changed

+36
-11
lines changed

4 files changed

+36
-11
lines changed

apps/frontend/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
5+
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Octodocs</title>
88
</head>

apps/frontend/public/logo.svg

Lines changed: 18 additions & 0 deletions
Loading

apps/frontend/src/features/pageSidebar/ui/WorkspaceNav/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ interface WorkspaceNavProps {
33
}
44

55
export function WorkspaceNav({ workspaceTitle }: WorkspaceNavProps) {
6+
// 빌드 에러 해결을 위한 임시 코드.
7+
console.log(workspaceTitle);
68
return (
79
<div className="flex flex-row items-center justify-center gap-2">
8-
<h1 className="text-md font-semibold">{workspaceTitle}</h1>
10+
<h1 className="text-md font-semibold">{"환영합니다 👋🏻"}</h1>
911
</div>
1012
);
1113
}

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)