I thought I’d experiment with upgrading to the new Hyperformula. I upgraded to:
"handsontable": "^9.0.2",
"@handsontable/react": "^9.0.2",
"hyperformula": "^1.0.0",
I have this simple spreadsheet
return <div>
<HotTable
licenseKey='non-commercial-and-evaluation'
data={[[1,2],[3,4]]}
formulas={{
engine: HyperFormula,
}}
/></div>
and I get this error:
Uncaught Error: Expected value of type: number for config parameter: sheetId
I understand that the new version of Hyperformula uses sheetId now, but I’m not sure where to add sheetId. (Adding it to the formulas object didn’t help.)
Interestingly, the error goes away if I remove the data line.
Am I missing a place to put in a sheetId or is this a bug?
Thanks!