Skip to content

Commit 17f577e

Browse files
authored
Comment out draw, pick and erase buttons in environment params
1 parent a092554 commit 17f577e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/InteractiveRLLAb.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -678,11 +678,11 @@ const StaticGrid = React.memo(function StaticGrid({
678678
</div>
679679
</div>
680680

681-
<div className="flex-col grid grid-cols-3 gap-2 mt-3 ustify-center items-center">
681+
{/*<div className="flex-col grid grid-cols-3 gap-2 mt-3 ustify-center items-center">
682682
<Button variant={tool==="draw"?"default":"outline"} onClick={()=>setTool("draw")}><MousePointer2 className="w-4 h-4 mr-1"/>Draw</Button>
683683
<Button variant={tool==="pick"?"default":"outline"} onClick={()=>setTool("pick")}><Wand2 className="w-4 h-4 mr-1"/>Pick</Button>
684684
<Button variant={tool==="erase"?"default":"outline"} onClick={()=>setTool("erase")}><Eraser className="w-4 h-4 mr-1"/>Erase</Button>
685-
</div>
685+
</div>*/}
686686

687687
<div className="flex-col grid grid-cols-5 gap-1 py-2 space-y-2 justify-center items-center text-xs">
688688
{(["wall","empty","goal","lava","start"] as CellType[]).map(c => (

0 commit comments

Comments
 (0)