📅 fix: Conversation grouping and labeling for prior years (#4180)

This commit is contained in:
Danny Avila 2024-09-21 18:50:04 -04:00 committed by GitHub
parent b0a48fd693
commit eba2c9a032
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 79 additions and 5 deletions

View file

@ -41,7 +41,8 @@ const Conversations = ({
paddingLeft: '10px',
}}
>
{localize(groupName) ?? groupName}
{/* eslint-disable-next-line @typescript-eslint/strict-boolean-expressions */}
{localize(groupName) || groupName}
</div>
{convos.map((convo, i) => (
<Convo