change prop type

This commit is contained in:
Katie Kroell 2026-02-18 16:24:52 -05:00
parent aa4f9c2dc7
commit 299985afef

View file

@ -16,7 +16,8 @@
href="#" href="#"
data-afterpay-modal="en_US" data-afterpay-modal="en_US"
data-bind="click:afterpayLearnMore" data-bind="click:afterpayLearnMore"
class="afterpay-learn-more">Learn more class="afterpay-learn-more">
<span>Learn more</span>
</a> </a>
</div> </div>
</div> </div>
@ -32,8 +33,6 @@ import {
setupModalLinks setupModalLinks
} from "@/helpers/cms-content-helper"; } from "@/helpers/cms-content-helper";
import { formatAmountInDollars } from '@/helpers/text-helper.js'; import { formatAmountInDollars } from '@/helpers/text-helper.js';
import textLink from "@/ux-components/text-link/text-link";
import modal from "@/digital-components/modal/modal";
import widgetFields from '@/constants/cms-widget-fields.js'; import { useMainStore } from '@/store/index.js'; import widgetFields from '@/constants/cms-widget-fields.js'; import { useMainStore } from '@/store/index.js';
export default { export default {
@ -43,7 +42,7 @@ export default {
props: { props: {
cmsWidgetName: String, cmsWidgetName: String,
modalWidgetName: String, modalWidgetName: String,
totalServicePrice: String totalServicePrice: Number
}, },
setup() { setup() {
const mainStore = useMainStore(); const mainStore = useMainStore();