(event: React.ChangeEvent<HTMLInputElement>)
| 959 | }; |
| 960 | |
| 961 | const handleIncludeBaseGameChange = (event: React.ChangeEvent<HTMLInputElement>) => { |
| 962 | const newValue = event.target.checked; |
| 963 | setIncludeBaseGame(newValue); |
| 964 | |
| 965 | const updateEvent = { |
| 966 | detail: { nodeId: id, includeBaseGame: newValue }, |
| 967 | }; |
| 968 | dispatchNodeDataUpdate(data, updateEvent.detail); |
| 969 | }; |
| 970 | |
| 971 | return ( |
| 972 | <div className="bg-gray-700 border-2 border-purple-500 rounded-lg p-4 min-w-[250px]"> |
nothing calls this directly
no test coverage detected