Skip to content

Commit

Permalink
Frontend Trends: Fix "conversartion" spelling error (#881)
Browse files Browse the repository at this point in the history
<!-- This is an auto-generated comment: release notes by OSS
Entelligence.AI -->
### Summary by Entelligence.AI

```
- Bug Fix: Corrected spelling errors in the Trends Main Page component. The term "Conversartion" has been corrected to "Conversation". This change improves the readability and understanding of the interface for users.
```
<!-- end of auto-generated comment: release notes by OSS Entelligence.AI
-->
  • Loading branch information
josancamon19 authored Sep 18, 2024
2 parents 58211e9 + eec5d18 commit aff5e5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/trends/get-trends-main-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default async function GetTrendsMainPage() {
</p>
<p className="text-sm text-gray-500">
{topic.memories_count}{' '}
{topic.memories_count === 1 ? 'Conversartion' : 'Conversations'}
{topic.memories_count === 1 ? 'Conversation' : 'Conversations'}
</p>
</div>
</li>
Expand Down Expand Up @@ -123,7 +123,7 @@ export default async function GetTrendsMainPage() {
</p>
<p className="text-sm text-gray-500">
{topic.memories_count}{' '}
{topic.memories_count === 1 ? 'Conversartion' : 'Conversations'}
{topic.memories_count === 1 ? 'Conversation' : 'Conversations'}
</p>
</div>
</li>
Expand Down

0 comments on commit aff5e5c

Please sign in to comment.