JavaScriptのエラーについて

エラーの原因がわかりません。

テーマは『Be Yours』というものを使っています。

TypeError: Cannot read properties of undefined (reading ‘alt’)

filterMedia() {
  $('[data-thumbnail-color]').hide();
  let selected_variant = this.currentVariant.featured_media.alt;
  let selected_attribute = '[data-thumbnail-color="' + selected_variant + '"]';
  if (selected_variant == selected_variant) {
    $(selected_attribute).show();
  }
}

3行目の"this.currentVariant.featured_media.alt"で止まっている原因がわかりません。

どなたか教えてください(>_<)

解決しました。