Skip to content

Commit 332d8cf

Browse files
committed
Fix lint error
1 parent 5f0a561 commit 332d8cf

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

packages/desktop-client/src/budgets/budgetsSlice.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// This is temporary until we move all loot-core/client over to desktop-client.
2-
31
import { createSlice, type PayloadAction } from '@reduxjs/toolkit';
42
import { t } from 'i18next';
53

packages/loot-core/src/client/shared-listeners.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
// This is temporary until we move all loot-core/client over to desktop-client.
33
/* eslint-disable no-restricted-imports */
44
import { resetSync, sync } from '@actual-app/web/src/app/appSlice';
5-
import { closeAndDownloadBudget, uploadBudget } from '@actual-app/web/src/budgets/budgetsSlice';
5+
import {
6+
closeAndDownloadBudget,
7+
uploadBudget,
8+
} from '@actual-app/web/src/budgets/budgetsSlice';
69
/* eslint-enable no-restricted-imports */
710
import { t } from 'i18next';
811

packages/loot-core/src/client/users/usersSlice.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
// This is temporary until we move all loot-core/client over to desktop-client.
22
/* eslint-disable no-restricted-imports */
33
import { resetApp } from '@actual-app/web/src/app/appSlice';
4-
import { closeBudget, loadAllFiles } from '@actual-app/web/src/budgets/budgetsSlice';
4+
import {
5+
closeBudget,
6+
loadAllFiles,
7+
} from '@actual-app/web/src/budgets/budgetsSlice';
58
/* eslint-enable no-restricted-imports */
69
import { createSlice, type PayloadAction } from '@reduxjs/toolkit';
710

0 commit comments

Comments
 (0)