Mariusz Sidorowicz

Results 4 comments of Mariusz Sidorowicz

i think you can copy paste, this i what i would do Clone the Repository: Clone the React Invoice Generator repository to your local machine using Git. You can do...

i have other question about dynamic translations like const translatedCountryList = countryList.map((country) => { return { value: country?.value, text: t(`countries.${country.text}`), } }) ` where it works but gives error of...

this seems to fix it, not sure if safe but works and no error: ``` const translatedCountryList = countryList.map((country) => { const text: any = `countries.${country.text}` return { value: country?.value,...

i had issue with jpeg/jpg, while png works with Image and img component. Seems like data stream from jpeg is much different from png and on opening pdf it can't...