twindle-co / twindle

Twindle - an open source project for beginners. Converting twitter threads to pdf, epub, and mobi format to be read by Kindle.
https://www.twindle.co
MIT License
134 stars 133 forks source link

Fix multiple threads bug #806

Closed PuruVJ closed 3 years ago

PuruVJ commented 3 years ago

Closes #804

The problem was that an array was being pushed to an array of object. VSCode Type checking paired with the types.d.ts we defined helped find the problem.

image

Added spread operator to fix it, as shown in image

Mira-Alf commented 3 years ago

Thanks @PuruVJ