diff --git a/packages/desktop-client/src/components/BankSyncStatus.tsx b/packages/desktop-client/src/components/BankSyncStatus.tsx index 52130e0c198..7ab31a9d287 100644 --- a/packages/desktop-client/src/components/BankSyncStatus.tsx +++ b/packages/desktop-client/src/components/BankSyncStatus.tsx @@ -21,9 +21,9 @@ export function BankSyncStatus() { const transitions = useTransition( accountsSyncingCount > 0 ? 'syncing' : null, { - from: { opacity: 0, transform: 'translateY(-100px)' }, - enter: { opacity: 1, transform: 'translateY(0)' }, - leave: { opacity: 0, transform: 'translateY(-100px)' }, + from: { opacity: 0 }, + enter: { opacity: 1 }, + leave: { opacity: 0 }, unique: true, }, ); @@ -31,13 +31,10 @@ export function BankSyncStatus() { return ( {transitions( diff --git a/packages/desktop-client/src/components/FinancesApp.tsx b/packages/desktop-client/src/components/FinancesApp.tsx index b585d5d30ee..e5cc924f4cd 100644 --- a/packages/desktop-client/src/components/FinancesApp.tsx +++ b/packages/desktop-client/src/components/FinancesApp.tsx @@ -22,7 +22,6 @@ import { useResponsive } from '../ResponsiveProvider'; import { theme } from '../style'; import { getIsOutdated, getLatestVersion } from '../util/versions'; -import { BankSyncStatus } from './BankSyncStatus'; import { View } from './common/View'; import { GlobalKeys } from './GlobalKeys'; import { ManageRulesPage } from './ManageRulesPage'; @@ -174,7 +173,6 @@ export function FinancesApp() { }} /> - + {isDevelopmentEnvironment() && !Platform.isPlaywright && ( diff --git a/upcoming-release-notes/3578.md b/upcoming-release-notes/3578.md new file mode 100644 index 00000000000..f0f6c4feed7 --- /dev/null +++ b/upcoming-release-notes/3578.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [The-Firexx] +--- + +Fixes bank sync notification overlap with uncategorized transactions \ No newline at end of file