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
fix(transform): check all console.error args in Fragment warning suppression
React 18 calls console.error with a format string and separate arguments
(e.g. console.error('Invalid prop `%s` supplied to `%s`', 'data-ds',
'React.Fragment')), so checking only arguments[0] missed the match.
Join all arguments before checking for 'data-ds' and 'React.Fragment'.
0 commit comments