refactor(weather): move top disclosures below board
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m3s

This commit is contained in:
2026-03-04 08:39:19 +01:00
parent 8bff21bede
commit 313ad53e2e
3 changed files with 15 additions and 10 deletions

View File

@@ -64,12 +64,6 @@ export default async function WeatherSessionPage({ params }: WeatherSessionPageP
badges={<Badge variant="primary">{session.entries.length} membres</Badge>}
/>
{/* Info sur les catégories */}
<WeatherInfoPanel />
{/* Évolution dans le temps */}
<WeatherTrendChart data={history} currentSessionId={session.id} />
{/* Live Wrapper + Board */}
<WeatherLiveWrapper
sessionId={session.id}
@@ -94,6 +88,8 @@ export default async function WeatherSessionPage({ params }: WeatherSessionPageP
canEdit={session.canEdit}
previousEntries={Object.fromEntries(previousEntries)}
/>
<WeatherInfoPanel className="mt-6 mb-6" />
<WeatherTrendChart data={history} currentSessionId={session.id} />
</WeatherLiveWrapper>
</main>
);