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

Commit

Permalink
Merge pull request #32 from NishantGupt786/master
Browse files Browse the repository at this point in the history
build fox
  • Loading branch information
aditansh authored Feb 26, 2024
2 parents 665f779 + e5b6b7c commit 8d2926b
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 8d2926b

Please sign in to comment.