Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Dec 19, 2024
1 parent a848d28 commit dd92cb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/desktop-client/src/components/sidebar/Accounts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export function Accounts() {
account={account}
connected={!!account.bank}
pending={syncingAccountIds.includes(account.id)}
failed={!!failedAccounts.get(account.id)}
failed={failedAccounts.has(account.id)}
updated={updatedAccounts.includes(account.id)}
to={getAccountPath(account)}
query={queries.accountBalance(account)}
Expand Down Expand Up @@ -149,7 +149,7 @@ export function Accounts() {
account={account}
connected={!!account.bank}
pending={syncingAccountIds.includes(account.id)}
failed={!!failedAccounts.get(account.id)}
failed={failedAccounts.has(account.id)}
updated={updatedAccounts.includes(account.id)}
to={getAccountPath(account)}
query={queries.accountBalance(account)}
Expand Down
2 changes: 0 additions & 2 deletions packages/loot-core/src/client/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ export const ADD_NOTIFICATION = 'ADD_NOTIFICATION';
export const REMOVE_NOTIFICATION = 'REMOVE_NOTIFICATION';
export const SET_NOTIFICATION_INSET = 'SET_NOTIFICATION_INSET';
export const GET_USER_DATA = 'GET_USER_DATA';
// export const SET_LAST_UNDO_STATE = 'SET_LAST_UNDO_STATE';
// export const SET_LAST_SPLIT_STATE = 'SET_LAST_SPLIT_STATE';
export const SET_ACCOUNTS_SYNCING = 'SET_ACCOUNTS_SYNCING';
export const ACCOUNT_SYNC_STATUS = 'ACCOUNT_SYNC_STATUS';
export const SIGN_OUT = 'SIGN_OUT';

0 comments on commit dd92cb3

Please sign in to comment.