Skip to content

Commit

Permalink
Fixed: Duplicate Permission Ids
Browse files Browse the repository at this point in the history
  • Loading branch information
shanmukhdutt committed Jan 17, 2024
1 parent 79652c3 commit 961f3ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/modules/user/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const actions: ActionTree<UserState, RootState> = {
if (permissionId) serverPermissionsFromRules.push(permissionId);

const serverPermissions = await UserService.getUserPermissions({
permissionIds: serverPermissionsFromRules
permissionIds: [...new Set(serverPermissionsFromRules)]
}, token);
const appPermissions = prepareAppPermissions(serverPermissions);

Expand Down

0 comments on commit 961f3ac

Please sign in to comment.