This commit is contained in:
Renan LE CARO 2025-04-06 10:41:46 +02:00
parent 6299f7e86b
commit ebbf482d0e
2 changed files with 3 additions and 22 deletions

View file

@ -843,18 +843,6 @@
"bricks": "_WWWW_WBBBBWWBBBBWWBBBBWWBBBBW_WWWW_", "bricks": "_WWWW_WBBBBWWBBBBWWBBBBWWBBBBW_WWWW_",
"svg": null "svg": null
}, },
{
"name": "icon:fullscreen",
"size": 6,
"bricks": "WW__WWW____W____________W____WWW__WW",
"svg": null
},
{
"name": "icon:exit_fullscreen",
"size": 6,
"bricks": "_W__W_WW__WW____________WW__WW_W__W_",
"svg": null
},
{ {
"name": "icon:concave_puck", "name": "icon:concave_puck",
"size": 8, "size": 8,
@ -984,14 +972,14 @@
{ {
"name": "icon:settings", "name": "icon:settings",
"size": 8, "size": 8,
"bricks": "_b_b_b_bbbbbbbb__bbggbbbbbg__gb__bg__gbbbbbggbb__bbbbbbbb_b_b_b_", "bricks": "_l_l_l_llllllll__llllllllll__ll__ll__llllllllll__llllllll_l_l_l_",
"svg": null, "svg": null,
"color": "" "color": ""
}, },
{ {
"name": "icon:unlocks", "name": "icon:unlocks",
"size": 7, "size": 7,
"bricks": "bbbb___b__b___b__b______gbgb___bgbg___gbgb___bgbg", "bricks": "eeee___e__e___e__e______ctCb___Gbsc___tOGO___OCbs",
"svg": null, "svg": null,
"color": "" "color": ""
}, },
@ -1278,12 +1266,5 @@
"bricks": "_vvvvv_vvvvv__v___v_v___v__v_bbbbbbb_v__v_b_v_v_b_v__v_b_v_v_b_v__v_b_v_v_b_v__v_b_v_v_b_v__v_b_v_v_b_v__v_b_v_v_b_v__v_b_vvv_b_v__v_b_____b_v__vvvvvvvvvvv_bbbb_____bbbb", "bricks": "_vvvvv_vvvvv__v___v_v___v__v_bbbbbbb_v__v_b_v_v_b_v__v_b_v_v_b_v__v_b_v_v_b_v__v_b_v_v_b_v__v_b_v_v_b_v__v_b_v_v_b_v__v_b_vvv_b_v__v_b_____b_v__vvvvvvvvvvv_bbbb_____bbbb",
"svg": null, "svg": null,
"color": "" "color": ""
},
{
"name": "icon:creative",
"size": 11,
"bricks": "bgg_bgg_bbg___________ggg_bgg_ggg___________bbg_bbb_bgg___________ggg_bgg_ggg___________bgg_ggg_bgg___________bbb_bbg_bgg",
"svg": null,
"color": ""
} }
] ]

View file

@ -28,7 +28,7 @@ function App() {
const deleteLevel = useCallback((li: number) => { const deleteLevel = useCallback((li: number) => {
if (confirm("Delete level")) { if (confirm("Delete level")) {
setLevels(allLevels.filter((l, i) => i !== li)); setLevels(levels.filter((l, i) => i !== li));
} }
}, []); }, []);