Skip to content

Commit

Permalink
Remove unnecessary classes and data attributes from block components …
Browse files Browse the repository at this point in the history
…in HBS.
  • Loading branch information
rohitpaulk committed Nov 23, 2024
1 parent d21a4b4 commit f974b46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/concept.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@
{{#each this.allBlocks as |block|}}
{{#if (eq block.type "markdown")}}
{{! @glint-expect-error: block isn't typed as MarkdownBlock }}
<Blocks::MarkdownBlock @model={{block}} class="mb-6" data-test-block />
<Blocks::MarkdownBlock @model={{block}} />
{{else if (eq block.type "concept_animation")}}
{{! @glint-expect-error: block isn't typed as ConceptAnimationBlock }}
<Blocks::ConceptAnimationBlock @model={{block}} class="mb-6 py-4" data-test-block />
<Blocks::ConceptAnimationBlock @model={{block}} />
{{/if}}
{{/each}}
</div>

0 comments on commit f974b46

Please sign in to comment.