Use @desktop-client/hooks alias for cleaner imports (#4789)

* Use @hooks path alias for cleaner imports

* Fix line errors

* Update to @desktop-client
This commit is contained in:
Joel Jeremy Marquez
2025-05-04 22:30:10 -07:00
committed by GitHub
parent 7074b4dd82
commit cc204ba70e
189 changed files with 628 additions and 443 deletions

View File

@@ -19,10 +19,11 @@ import { View } from '@actual-app/components/view';
import { evalArithmetic } from 'loot-core/shared/arithmetic';
import { amountToInteger, appendDecimals } from 'loot-core/shared/util';
import { useMergedRefs } from '../../hooks/useMergedRefs';
import { useSyncedPref } from '../../hooks/useSyncedPref';
import { useFormat } from '../spreadsheet/useFormat';
import { useMergedRefs } from '@desktop-client/hooks/useMergedRefs';
import { useSyncedPref } from '@desktop-client/hooks/useSyncedPref';
type AmountInputProps = {
id?: string;
inputRef?: Ref<HTMLInputElement>;