Skip to content

Commit

Permalink
added 1 second delay
Browse files Browse the repository at this point in the history
  • Loading branch information
peps committed Nov 14, 2024
1 parent 5fdfe80 commit 12f2f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/phase/Setup/components/InfoNav/InfoNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const emojis = {

const calculateReadingTime = (text) => {
const words = text.split(' ').length;
return (words / 350) * 60 + 2; // Convert to seconds + 2s for a pause
return (words / 350) * 60 + 3; // Convert to seconds + 3s for a pause
};

export default function InfoNav() {
Expand Down

0 comments on commit 12f2f9a

Please sign in to comment.