Axis tick marks and tick-mark labels appear with ggplot2 3.2.1 but not with ggplot2 3.3.0. Examples below created using ggomosaic 0.2.2, but this happened also with 0.2.0.
library(ggplot2 ) ## 3.2.1
library(ggmosaic) ## 0.2.2 (dev version)
ggplot(data = titanic) + geom_mosaic(aes(x = product(Class), fill = Survived))

library(ggplot2 ) ## 3.3.0
library(ggmosaic) ## 0.2.2 (dev version)
ggplot(data = titanic) + geom_mosaic(aes(x = product(Class), fill = Survived))
