feat: display GuessHistoryTable after winning condition and friends' results
All checks were successful
Build Docker Image / build (push) Successful in 1m12s

This commit is contained in:
2026-03-06 20:26:04 +01:00
parent 249da5ad2e
commit d3e36e486f

View File

@@ -252,13 +252,8 @@
{/if}
</section>
<GuessHistoryTable
{selectedCharacters}
{dailyCharacter}
{columnVisibility}
/>
{#if data.friendsTodayResults && data.friendsTodayResults.length > 0}
{#if hasWon && data.friendsTodayResults && data.friendsTodayResults.length > 0}
<section class="mt-6 rounded-3xl border border-white/10 bg-white/5 p-6 shadow-[0_24px_60px_rgba(0,0,0,0.45)] backdrop-blur">
<p class="text-xs font-semibold uppercase tracking-[0.28em] text-amber-100 text-center">Tes amis aujourd'hui</p>
<div class="mt-4 space-y-2">
@@ -287,6 +282,12 @@
</section>
{/if}
<GuessHistoryTable
{selectedCharacters}
{dailyCharacter}
{columnVisibility}
/>
<YesterdayCharacter {yesterdayCharacter} />
</div>
</main>