Skip to content

Commit

Permalink
chore: update rotki/eslint-config
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsos committed Oct 4, 2024
1 parent b273720 commit 6b45645
Show file tree
Hide file tree
Showing 5 changed files with 174 additions and 483 deletions.
4 changes: 2 additions & 2 deletions components/account/CountrySelect.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<script setup lang="ts">
const modelValue = defineModel<string>({ required: true });
withDefaults(
defineProps<{
disabled?: boolean;
Expand All @@ -11,8 +13,6 @@ withDefaults(
const { t } = useI18n();
const { countries } = useCountries();
const modelValue = defineModel<string>({ required: true });
</script>

<template>
Expand Down
4 changes: 2 additions & 2 deletions components/checkout/pay/SavedCardDisplay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,6 @@ function submit() {
return get(submitPayload);
}
defineExpose({ submit });
const { deleteCard } = usePaymentCardsStore();
const deleteLoading = ref(false);
Expand All @@ -155,6 +153,8 @@ async function handleDeleteCard() {
await deleteCard(get(card).token);
set(deleteLoading, false);
}
defineExpose({ submit });
</script>

<template>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
"@nuxt/test-utils": "3.14.2",
"@nuxtjs/i18n": "8.5.5",
"@nuxtjs/sitemap": "5.3.5",
"@rotki/eslint-config": "3.0.0",
"@rotki/eslint-plugin": "0.4.0",
"@rotki/eslint-config": "3.2.1",
"@rotki/eslint-plugin": "0.5.0",
"@rotki/ui-library": "1.3.0",
"@types/braintree-web": "3.96.15",
"@types/paypal-checkout-components": "4.0.8",
Expand Down
Loading

0 comments on commit 6b45645

Please sign in to comment.