Skip to content

Commit 18d5303

Browse files
committed
Fix config issue
1 parent 52bf220 commit 18d5303

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/Layout/LayoutCart.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
{{ cartLength }}
3838
</span>
3939
<span class="text-white lg:text-black"
40-
>Total: {{ config.currencySymbol }} {{ subTotal }}</span
40+
>Total: {{ config.public.currencySymbol }} {{ subTotal }}</span
4141
>
4242
</div>
4343
</transition>

components/Products/ProductImage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ const props = defineProps({
1717
const config = useRuntimeConfig();
1818
1919
const displayedImage = computed(() => {
20-
return props.src || config.placeholderImage;
20+
return props.src || config.public.placeholderImage;
2121
});
2222
</script>

0 commit comments

Comments
 (0)