diff --git a/frontend/src/components/WorkspaceHome.tsx b/frontend/src/components/WorkspaceHome.tsx
index ad0c58140..5734dfeb5 100644
--- a/frontend/src/components/WorkspaceHome.tsx
+++ b/frontend/src/components/WorkspaceHome.tsx
@@ -422,7 +422,7 @@ function StartupDashboard({ onOpenView }: { onOpenView: (view: WorkspaceStartupV
{loading ? (
답변 대기 메일을 불러오는 중...
) : pendingReplies.length === 0 ? (
- 답변 대기 중인 보낸 메일이 없습니다.
+ 답변 대기 중인 보낸 메일이 없습니다.
) : pendingReplies.map((reply) => {
const safeSubject = toSafeReactText(reply.subject?.trim() || null, '(제목 없음)');
const safeSnippet = toSafeReactText(reply.snippet);
@@ -451,7 +451,7 @@ function StartupDashboard({ onOpenView }: { onOpenView: (view: WorkspaceStartupV
{loading ? (
작업을 불러오는 중...
) : pendingTasks.length === 0 ? (
- 대기 작업이 없습니다.
+ 대기 작업이 없습니다.
) : pendingTasks.slice(0, 3).map((task) => {
const pKor = mapPriorityToKorean(task.priority);
const pClass = pKor === '긴급' || pKor === '높음' ? 'text-red-500' : pKor === '보통' ? 'text-green-500' : 'text-muted-foreground';
@@ -552,7 +552,7 @@ function StartupDashboard({ onOpenView }: { onOpenView: (view: WorkspaceStartupV
{loading ? (
메일을 불러오는 중...
) : emails.length === 0 ? (
- 수신된 메일이 없습니다.
+ 수신된 메일이 없습니다.
) : emails.slice(0, 5).map((mail) => (