From c4c14d3142c90ff3e626bb931751607ed62a4202 Mon Sep 17 00:00:00 2001 From: roble Date: Sat, 6 Jun 2026 11:46:53 +0100 Subject: [PATCH] fix: correct import paths for types in billing components --- resources/js/vue/components/ProductCard.vue | 2 +- resources/js/vue/components/ProductSection.vue | 2 +- resources/js/vue/pages/Checkout.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/js/vue/components/ProductCard.vue b/resources/js/vue/components/ProductCard.vue index ce5857c..a0111b6 100644 --- a/resources/js/vue/components/ProductCard.vue +++ b/resources/js/vue/components/ProductCard.vue @@ -2,7 +2,7 @@ import { router } from '@inertiajs/vue3'; import { computed, ref, watch } from 'vue'; -import type { Price, Product } from '@modules/Billing/resources/js/types'; +import type { Price, Product } from '@modules/billing/resources/js/types'; import { getIntervalDisplay } from '../utils/intervals'; const props = defineProps<{ diff --git a/resources/js/vue/components/ProductSection.vue b/resources/js/vue/components/ProductSection.vue index e6fec19..852ecd1 100644 --- a/resources/js/vue/components/ProductSection.vue +++ b/resources/js/vue/components/ProductSection.vue @@ -1,7 +1,7 @@