Update Backward Game

This commit is contained in:
nickofolas
2022-04-24 14:50:55 -05:00
parent 43e2fc8d87
commit 082b4abe71
2 changed files with 7 additions and 13 deletions
+1 -1
View File
@@ -6,5 +6,5 @@ export function BlinkingCursor(): React.ReactElement {
const i = setInterval(() => setOn((old) => !old), 1000);
return () => clearInterval(i);
});
return <>{on ? "|" : ""}</>;
return <>{on ? "|" : <>&nbsp;</>}</>;
}