Skip to content

Commit 3622f19

Browse files
committed
fix(frontend): use correct prop syntax in HeroButtons
1 parent ed17dbc commit 3622f19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/home/HeroButton.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div
33
class="rounded-lg px-4 py-2 md:px-6 md:py-4 bg-grayscale-600 text-grayscale-200"
44
>
5-
<a href="{{ href }}">{{ name }}</a>
5+
<a :href="href">{{ name }}</a>
66
</div>
77
</template>
88

0 commit comments

Comments
 (0)