Skip to content

Commit

Permalink
fix(ButtonCardView): Correct typo (#855)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonz94 authored Dec 31, 2024
1 parent b4a947a commit 6536801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/classes/ButtonCardView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class ButtonCardView extends YTNode {
constructor(data: RawNode) {
super();
this.title = data.title;
this.icon_name = data.icon.sources[0].clientResource.imageName;
this.icon_name = data.image.sources[0].clientResource.imageName;
this.on_tap_endpoint = new NavigationEndpoint(data.rendererContext.commandContext.onTap);
}
}

0 comments on commit 6536801

Please sign in to comment.