From 60ba3b79775f7fa80768f6dcbc98aa986f4d12e0 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Mon, 6 Jan 2025 22:03:28 +0800 Subject: [PATCH] format code --- src/components/desktop/IconSelect.vue | 2 +- src/stores/exchangeRates.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/desktop/IconSelect.vue b/src/components/desktop/IconSelect.vue index 22bbebc9..64e093e5 100644 --- a/src/components/desktop/IconSelect.vue +++ b/src/components/desktop/IconSelect.vue @@ -40,7 +40,7 @@ import { type Ref, ref, computed, useTemplateRef, nextTick } from 'vue'; import type { ColorValue } from '@/core/color.ts'; -import type {IconInfo, IconInfoWithId} from '@/core/icon.ts'; +import type { IconInfo, IconInfoWithId } from '@/core/icon.ts'; import { arrayContainsFieldValue } from '@/lib/common.ts'; import { getIconsInRows } from '@/lib/icon.ts'; import { scrollToSelectedItem } from '@/lib/ui/desktop.ts'; diff --git a/src/stores/exchangeRates.ts b/src/stores/exchangeRates.ts index 05c5747c..1206c5c7 100644 --- a/src/stores/exchangeRates.ts +++ b/src/stores/exchangeRates.ts @@ -1,7 +1,7 @@ import { type Ref, ref, computed } from 'vue'; import { defineStore } from 'pinia'; -import type {LatestExchangeRate, LatestExchangeRateResponse} from '@/models/exchange_rate.ts'; +import type { LatestExchangeRate, LatestExchangeRateResponse } from '@/models/exchange_rate.ts'; import { isEquals } from '@/lib/common.ts'; import { getCurrentUnixTime, formatUnixTime } from '@/lib/datetime.ts';