The YieldExplainers component's type signature includes action: 'enter' | 'exit' | 'claim', but in practice it only receives 'enter' or 'exit' because YieldForm guards against the claim action with {!isClaimAction && <YieldExplainers ... />}.
The type signature should be narrowed to action: 'enter' | 'exit' to accurately reflect actual usage and prevent confusion.
File: src/pages/Yields/components/YieldExplainers.tsx
Context: