I have an app build on NestJS, TypeORM and MySQL. Deployed on an Ubuntu server on Digital Ocean. My problem now is, I downloaded production data locally and data pulls correctly, but when I deploy online, the data pulled is for the day plus 1 day. For example, when I select 2022-03-01 AND 2022-03-01, data pulled is for 2022-03-02. I am using luxon library to pull format the start and end date to startOf('day') and endOf('day') respectively.