diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/solutions/ExamplesOrganizationCloner.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/solutions/ExamplesOrganizationCloner.java index b4dc2e4c8a..c3aa9d3e46 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/solutions/ExamplesOrganizationCloner.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/solutions/ExamplesOrganizationCloner.java @@ -118,6 +118,9 @@ public class ExamplesOrganizationCloner { User userUpdate = new User(); userUpdate.setExamplesOrganizationId(newOrganization.getId()); userUpdate.setPasswordResetInitiated(user.getPasswordResetInitiated()); + userUpdate.setSource(user.getSource()); + userUpdate.setGroupIds(null); + userUpdate.setPolicies(null); return Mono .when( userService.update(user.getId(), userUpdate),