Within the context of 'react-container-query', when passing initialSize={{ width: undefined }} or initialSize={{ width: null }} you get a true in matchQueries for that className to be applied.
I would think we'd want false to be set here wherever we have a none numerical value passed in. Granted you could do a check like initialSize={width && { width }} to get around this but this seems a bit verbose.
Within the context of 'react-container-query', when passing
initialSize={{ width: undefined }}orinitialSize={{ width: null }}you get atrueinmatchQueriesfor that className to be applied.I would think we'd want
falseto be set here wherever we have a none numerical value passed in. Granted you could do a check likeinitialSize={width && { width }}to get around this but this seems a bit verbose.