()
| 51 | }; |
| 52 | |
| 53 | const handleRemoveBlock = () => { |
| 54 | setSelectedBlockId(null); |
| 55 | setTimeout(() => { |
| 56 | removeBlock(blockId); |
| 57 | }, 100); |
| 58 | }; |
| 59 | |
| 60 | const backgroundColor = source === null ? "#7d7a751d" : "transparent"; |
| 61 |
nothing calls this directly
no test coverage detected