-
Notifications
You must be signed in to change notification settings - Fork 219
Closed
Description
This line
CircleType/src/utils/splitNode.js
Line 13 in ffebbcc
| return node.innerText.trim().split('').map(char => { |
.split('')wrongly splits emojis in iOS webview, if you change to
for (const char of trimmedText) {
// char
}it will work with iOS emojis