With current CRAN version, this code produces: ```r ggplot(PlantGrowth, aes(x = group, y = weight)) + geom_boxplot() + scale_x_discrete(breaks = NULL) ```  With GH version (likely introduced by 7e5ff921c50fb0beb203b115397ea33fee410a54, cc @thomasp85), this code produces an error: ```r Error: `mapped_discrete` objects can only be created from numeric vectors ```