Skip to content

Commit

Permalink
[Issue-2040] Fix missing list account after migrate done
Browse files Browse the repository at this point in the history
  • Loading branch information
S2kael committed Oct 20, 2023
1 parent d90a44b commit fe74bc2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const filterAccountMigrated = (acc: AccountJson) => {
};

const filterAccountCanMigrate = (acc: AccountJson) => {
return acc.address !== ALL_ACCOUNT_KEY && !acc.isExternal && !acc.isMasterPassword && !acc.isInjected;
return acc.address !== ALL_ACCOUNT_KEY && !acc.isExternal && !acc.isInjected;
};

const Component: React.FC<Props> = (props: Props) => {
Expand Down

0 comments on commit fe74bc2

Please sign in to comment.