build dev

This commit is contained in:
Olivier Gagnon
2021-09-18 12:13:20 -04:00
parent e1a22016b5
commit e087420519
12 changed files with 1509 additions and 1431 deletions
+7 -2
View File
@@ -337,13 +337,18 @@ export function WorkInProgressRoot(): React.ReactElement {
% complete. <br />
If you cancel, your work will be saved and you can come back to complete the program later.
</p>
<button className="work-button" onClick={() => player.finishCreateProgramWork(true)}>
<button
className="work-button"
onClick={() => {
player.finishCreateProgramWork(true);
router.toTerminal();
}}
>
Cancel work on creating program
</button>
</div>
);
}
setTimeout(() => router.toCity(), 50);
return <></>;
}