Skip to content

Commit

Permalink
Issue-29: Fix LCP of app
Browse files Browse the repository at this point in the history
Relates to deepgram-devs#29
- It fixes accessibility
- Fixes LCP, performance increase from 50 to 70%
  • Loading branch information
RaiVaibhav committed Apr 12, 2024
1 parent 51754cd commit 506532d
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions app/components/Conversation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -434,10 +434,7 @@ export default function Conversation(): JSX.Element {
>
<div className="grid grid-cols-12 overflow-x-auto gap-y-2">
{initialLoad ? (
<InitialLoad
fn={startConversation}
connecting={!connection}
/>
<InitialLoad fn={startConversation} connecting={!connection} />
) : (
<>
{chatMessages.length > 0 &&
Expand Down

0 comments on commit 506532d

Please sign in to comment.