Using the component EventTracking in the project, running Gatsby Build has a compilation error (see screenshot below):
"window" is not available during server side rendering
Build should complete successfully.

Replace faulty code by
if (typeof window !== 'undefined' && window) {
if ('ontouchstart' in window) {
handlers.touchstart = moveHandler;
} else {
handlers.mousemove = moveHandler;
handlers.mouseleave = leaveHandler;
}
}
For information, I have tested my change using npm link and it did fix my build issue.
Hi @mstephano,
Thank you for your interest in our Grid and for your contribution! We have some rules on how to name pull requests and how to test components. I'll help you with this.
@LazyLahtak Great, sure no problem. Or you could always just include my suggestion on how to resolve (or you can have your own solution) to your fork. If you do that, then you can delete my pull request :)
Hi @mstephano,
We have released the 2.7.2 version of DevExtreme Reactive with this fix.
Thank you very much for the quick fix. I was a little late but have I tested the fix in 2.7.3 and I can confirm that it worked!