Why is my Dawn Theme 4.0 variant pricing not displaying correctly?

Hi @GoDrinks-Bali & @Treyhaskett

Sorry for delay.

I have checked your theme version 4.0.0 where variants.js is not available. so you have to add the below code to the global.js file.

Go to Assets/ global.js and add below code.

updateMasterId() {
    this.currentVariant = this.getVariantData().find((variant) => {
      	return !variant.options.map((option, index) => {
        return this.options[index] === option;
      }).includes(false);
    });
  }

Thank you.