Skip to content

Commit 327388e

Browse files
committed
fix: 使用履歴があるがプロジェクトが0の場合の表示を修正
1 parent c944805 commit 327388e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

client/src/pages/Home.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function ProjectDashboard({ involvedProjects }: { involvedProjects: InvolvedProj
5555
</NavLink>
5656
</div>
5757

58-
{involvedProjects.length > 0 ? (
58+
{involvedProjects.length > 0 && (
5959
<div className="space-y-8">
6060
{/* All Projects */}
6161
<section>
@@ -70,8 +70,6 @@ function ProjectDashboard({ involvedProjects }: { involvedProjects: InvolvedProj
7070
</div>
7171
</section>
7272
</div>
73-
) : (
74-
<EmptyState />
7573
)}
7674
</div>
7775
</div>

0 commit comments

Comments
 (0)