Skip to content

Commit

Permalink
Merge branch 'master' into matiss/preview-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
MatissJanis authored Jan 17, 2025
2 parents a953023 + 278e4ad commit 01f1c32
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -736,6 +736,12 @@ export default [
'import/no-default-export': 'off',
},
},
{
files: ['packages/api/index.ts'],
rules: {
'import/no-unresolved': 'off',
},
},
{},
{
// TODO: fix the issues in these files
Expand Down
2 changes: 1 addition & 1 deletion packages/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type {
import type { InitConfig } from 'loot-core/server/main';

// @ts-ignore: bundle not available until we build it
// eslint-disable-next-line import/extensions, import/no-unresolved
// eslint-disable-next-line import/extensions
import * as bundle from './app/bundle.api.js';
import * as injected from './injected';
import { validateNodeVersion } from './validateNodeVersion';
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop-client/src/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function AppInner() {
}),
);
}
}, [addNotification, signOut, t, userData?.tokenExpired]);
}, [dispatch, t, userData?.tokenExpired]);

return budgetId ? <FinancesApp /> : <ManagementApp />;
}
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/4184.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Maintenance
authors: [MatissJanis]
---

Patch lint issues in master branch.

0 comments on commit 01f1c32

Please sign in to comment.