()
| 201 | }; |
| 202 | |
| 203 | const handleRemoveBlock = () => { |
| 204 | setSelectedBlockId(null); |
| 205 | setTimeout(() => { |
| 206 | removeBlock(blockId); |
| 207 | }, 100); |
| 208 | }; |
| 209 | |
| 210 | return ( |
| 211 | <DragProvider blockId={blockId}> |
nothing calls this directly
no test coverage detected