I'm using the React Spreadsheet component. When I try to resize a column/row I get this error in the Javascript console:
Uncaught EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "script-src 'self'".
I don't want to add `unsafe-eval` to my script-src CSP as it will introduce security holes.
Is there any other way to overcome this issue?