FIX: Wizard logo step JS error (#32303)

`PreviewBase#drawPills` expects a `homepageStyle` option, but on the logo wizard page we weren't passing any. In this change we pass one of the possible values: `hot`.
This commit is contained in:
Ted Johansson
2025-04-15 10:54:46 +08:00
committed by GitHub
parent 2cd82abbe3
commit 8b9da12bf2
@@ -45,6 +45,6 @@ export default class Logo extends PreviewBaseComponent {
imageHeight
);
this.drawPills(colors, font, height / 2);
this.drawPills(colors, font, height / 2, { homepageStyle: "hot" });
}
}