We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99b217e commit 75b3048Copy full SHA for 75b3048
packages/extension-polkagate/src/fullscreen/homeFullScreen/partials/ProfileMenu.tsx
@@ -224,7 +224,7 @@ function ProfileMenu ({ address, closeParentMenu }: Props): React.ReactElement<P
224
return;
225
}
226
227
- const accountsInAProfileTag = accounts.filter(({ profile }) => profile && profile === currentProfile);
+ const accountsInAProfileTag = accounts.filter(({ profile }) => profile?.split(',').find((accountProfile) => accountProfile === currentProfile));
228
229
const newProfiles = profileNames.filter((item) => item !== profileToBeRemoved);
230
0 commit comments