Skip to content
This repository has been archived by the owner on May 12, 2024. It is now read-only.

Commit

Permalink
build fox
Browse files Browse the repository at this point in the history
  • Loading branch information
NishantGupt786 committed Feb 26, 2024
1 parent 665f779 commit e5b6b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devsoc24-landing/src/components/terminal/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const triggerTypewriterEffect = (commandIndex: number) => {
if (newCommands[commandIndex]) {
const newDisplayOutput = [...newCommands[commandIndex]?.displayOutput ?? []];
newDisplayOutput[currentLineIndex] = line.substr(0, nextCharIndex + 1);
newCommands[commandIndex].displayOutput = newDisplayOutput;
newCommands[commandIndex]!.displayOutput = newDisplayOutput;
}
return newCommands;
});
Expand Down

0 comments on commit e5b6b7c

Please sign in to comment.