Skip to content

Commit

Permalink
Hotfix for recipes that don't have cssclasses
Browse files Browse the repository at this point in the history
  • Loading branch information
lachholden committed Oct 31, 2023
1 parent 014df25 commit c6b1abc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RecipeCard.svelte
Expand Up @@ -134,7 +134,7 @@

<!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
<div
class={frontmatter?.cssclasses.join(" ")}
class={frontmatter?.cssclasses?.join(" ")}
class:container={true}
class:markdown-rendered={true}
bind:clientWidth={containerWidth}
Expand Down

0 comments on commit c6b1abc

Please sign in to comment.