chore: fix the capitalization of 3 characters to make sure they match. :)

This commit is contained in:
Björn Otgaar
2026-01-23 11:25:30 +01:00
parent 6f4471ce6f
commit ec211ccbc3

View File

@@ -119,7 +119,7 @@ const VisProgUI = () => {
<SaveLoadPanel></SaveLoadPanel>
</Panel>
<Panel position="bottom-center">
<button onClick={() => undo()}>undo</button>
<button onClick={() => undo()}>Undo</button>
<button onClick={() => redo()}>Redo</button>
</Panel>
<Controls/>
@@ -189,7 +189,7 @@ function VisProgPage() {
return (
<>
<VisualProgrammingUI/>
<button onClick={runProgram}>run program</button>
<button onClick={runProgram}>Run Program</button>
</>
)
}