You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.
where content is an array, Rapscallon will fail on the adler checksum generator:
/Users/gcp/Thumbtack/universal-frontend/node_modules/@thumbtack/rapscallion/lib/adler32.js:28
b += a += data.charCodeAt(i);
^
TypeError: data.charCodeAt is not a function
renderToString() allows for arrays, so it seems like we should handle them here. I can fix by specifying content[0] (all of the arrays I'm dealing with at the moment are 1-length), though I'd need to do some additional research to know exactly what React is expected to output when an array is provided.
The text was updated successfully, but these errors were encountered:
If you attempt to render a tag such as this:
where
content
is an array, Rapscallon will fail on the adler checksum generator:renderToString()
allows for arrays, so it seems like we should handle them here. I can fix by specifyingcontent[0]
(all of the arrays I'm dealing with at the moment are 1-length), though I'd need to do some additional research to know exactly what React is expected to output when an array is provided.The text was updated successfully, but these errors were encountered: