Skip to content
This repository was archived by the owner on Sep 30, 2023. It is now read-only.

Commit 66c6627

Browse files
committed
fix: skip type check for now
1 parent 8694498 commit 66c6627

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"version": "0.0.0",
33
"scripts": {
44
"dev": "vite",
5-
"build": "vue-tsc --noEmit && vite build",
5+
"build": "vite build",
66
"serve": "vite preview",
77
"lint": "eslint --ext .js,.ts,.vue,.json .",
88
"lint:fix": "eslint --fix --ext .js,.ts,.vue,.json .",

src/components/molecules/form/FormAddMinus.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const {
3737
<span v-if="required" class="text-primary">*</span>
3838
</label>
3939
<AppAddMinusButton
40-
:value="Number(inputValue)"
40+
:value="inputValue"
4141
:error="!!errorMessage"
4242
:min="min"
4343
:max="max"

0 commit comments

Comments
 (0)