Justin Fowler

Results 3 comments of Justin Fowler

I was able to get going with Electron (much easier than I expected) and found that the issue lies with valuation rates going below 0. I liquidated some of my...

This fix worked for me: stockQueue.ts line 20 ``` if (Number.isNaN(valuation) || !Number.isFinite(valuation)) { return 0; } ```

Thanks for responding. I should have mentioned that this is specifically when using the "Make Payment On Submit" setting for invoices. This creates a payment using the date that you...