remove redundant content in function names

This commit is contained in:
MaysWind
2025-10-10 23:09:53 +08:00
parent b8fcdacb84
commit 77b083c41b
6 changed files with 10 additions and 10 deletions
@@ -16,7 +16,7 @@ export interface DayAndDisplayName {
readonly displayName: string;
}
export function useAccountEditPageBaseBase() {
export function useAccountEditPageBase() {
const { tt, getAllAccountCategories, getAllAccountTypes, getMonthdayShortName } = useI18n();
const userStore = useUserStore();
@@ -13,7 +13,7 @@ import type { Account, CategorizedAccount } from '@/models/account.ts';
import { isObject, isNumber, isString } from '@/lib/common.ts';
export function useAccountListPageBaseBase() {
export function useAccountListPageBase() {
const { formatAmountToLocalizedNumeralsWithCurrency } = useI18n();
const settingsStore = useSettingsStore();