Skip to content

Commit

Permalink
fix: replace .sync with v-model:value
Browse files Browse the repository at this point in the history
  • Loading branch information
emuvente committed Oct 3, 2024
1 parent 0ed6e1e commit 7102be7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/LoanCards/Buttons/LendIncrementButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<kv-select
id="lend-increment-amount"
v-model="selectedOption"
@update:modelValue="trackLendAmountSelection"
@update:model-value="trackLendAmountSelection"
>
<option
v-for="price in prices"
Expand All @@ -21,7 +21,7 @@
:class="{ 'tw-w-full': loading }"
:price="selectedOption"
:loan-id="loanId"
:loading.sync="loading"
v-model:loading="loading"
@add-to-basket="$emit('add-to-basket', $event)"
>
{{ buttonText }}
Expand Down

0 comments on commit 7102be7

Please sign in to comment.