diff --git a/frontend/src/components/VibeAura.tsx b/frontend/src/components/VibeAura.tsx index 78fcce2..52eda5a 100644 --- a/frontend/src/components/VibeAura.tsx +++ b/frontend/src/components/VibeAura.tsx @@ -17,8 +17,8 @@ function describeProfile(energy: number, novelty: number) { return { energyLabel, discoveryLabel }; } -/** A small, ambient representation of the live recommendation profile. */ -export function VibeAura({ profile }: { profile: VibeProfile }) { +/** An ambient representation of the live recommendation profile. */ +export function VibeAura({ profile, ambient = false }: { profile: VibeProfile; ambient?: boolean }) { const energy = clamp(profile.energy, 0.5); const novelty = clamp(profile.noveltyHunger ?? profile.explorationCoefficient, 0.3); const { energyLabel, discoveryLabel } = describeProfile(energy, novelty); @@ -32,10 +32,12 @@ export function VibeAura({ profile }: { profile: VibeProfile }) { return (
Plan revision {planVersion}; upcoming tracks may change as you listen.
} + {planVersion &&Plan revision {planVersion}; upcoming tracks may change as you listen.
} - {currentTrack && ( -