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

Commit

Permalink
fix: build type error
Browse files Browse the repository at this point in the history
  • Loading branch information
vycdev committed Jul 13, 2020
1 parent b9bb9af commit 9156b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/components/common/typingBox/typingBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const previousScores: Array<PreviousScoresType> = JSON.parse(

export const TypingBox = (props: TypingBoxProps) => {
const [input, setInput] = useState("");
const [text, setText] = useState("");
const [text, setText] = useState([""]);
const [visibleText, setVisibleText] = useState([
<div key={"default"}></div>
]);
Expand Down

0 comments on commit 9156b34

Please sign in to comment.