Skip to content

Commit

Permalink
Fixed not having spaces between the price label and the price
Browse files Browse the repository at this point in the history
  • Loading branch information
hankertrix committed Dec 29, 2024
1 parent b8b7674 commit 3d4c132
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/routes/skate-recommendations/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@
</header>

<div class="details text">
<div><strong>Price: </strong>{skateObj.price}</div>
<div>
<strong>Price: </strong>
{skateObj.price}
</div>

<!-- eslint-disable-next-line svelte/no-at-html-tags -->
<div>{@html skateObj.reason}</div>
Expand Down

0 comments on commit 3d4c132

Please sign in to comment.