Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
olaszakos committed Jan 14, 2025
1 parent 5347428 commit f51b29a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/wallet/src/components/assets/AssetDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
</VDialog>
</template>
<script lang="ts" setup>
import { mdiBitcoin, mdiCheckCircle, mdiClose, mdiNote, mdiStorageTank, mdiStore } from '@mdi/js';
import { mdiBitcoin, mdiCheckCircle, mdiClose } from '@mdi/js';
import { computed, ref, toRefs, watch } from 'vue';
import {
VAutocomplete,
Expand All @@ -151,10 +151,10 @@ import {
import logger from '~/core/logger.core';
import { Asset, UUID } from '~/generated/station/station.did';
import { useStationStore } from '~/stores/station.store';
import { fetchWellKnownIcpAssets, getAllAssets, WellKnownAsset } from '~/utils/asset.utils';
import { requiredRule } from '~/utils/form.utils';
import { assertAndReturn, unreachable } from '~/utils/helper.utils';
import AssetForm from './AssetForm.vue';
import { requiredRule } from '~/utils/form.utils';
import { fetchWellKnownIcpAssets, getAllAssets, WellKnownAsset } from '~/utils/asset.utils';
const input = withDefaults(
defineProps<{
Expand Down

0 comments on commit f51b29a

Please sign in to comment.