Before 10fa0014d6be81a7e641b8c2c3b48e1df1b7e2f5, this code produced the following image: ```r ggplot(PlantGrowth, aes(y = weight)) + geom_boxplot() + scale_y_continuous(limits = c(5, 7.5)) ```  After 10fa0014d6be81a7e641b8c2c3b48e1df1b7e2f5, it now produces a blank plot with this warning: ```r Warning message: Computation failed in `stat_boxplot()`: missing values and NaN's not allowed if 'na.rm' is FALSE ``` cc @thomasp85