Skip to content

Commit 8daf5c8

Browse files
update
1 parent 6a21fdf commit 8daf5c8

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package-lock.json

+7-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"dependencies": {
1717
"@emotion/react": "^11.11.4",
1818
"@emotion/styled": "^11.11.5",
19-
"@gridsuite/commons-ui": "0.62.0",
19+
"@gridsuite/commons-ui": "0.63.0",
2020
"@hookform/resolvers": "^3.3.4",
2121
"@mui/icons-material": "^5.15.14",
2222
"@mui/lab": "5.0.0-alpha.169",

src/pages/profiles/modification/profile-modification-dialog.tsx

-3
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ const ProfileModificationDialog: FunctionComponent<
5858
.nullable(),
5959
})
6060
.required();
61-
console.log('formSchema =', formSchema);
6261

6362
const formMethods = useForm({
6463
resolver: yupResolver(formSchema),
@@ -75,7 +74,6 @@ const ProfileModificationDialog: FunctionComponent<
7574
loadFlowParameterId: profileFormData[LF_PARAM_ID],
7675
maxAllowedCases: profileFormData[USER_QUOTAS],
7776
};
78-
console.log('modify', profileData);
7977
UserAdminSrv.modifyProfile(profileData)
8078
.catch((error) => {
8179
snackError({
@@ -102,7 +100,6 @@ const ProfileModificationDialog: FunctionComponent<
102100
UserAdminSrv.getProfile(profileId)
103101
.then((response) => {
104102
setDataFetchStatus(FetchStatus.FETCH_SUCCESS);
105-
console.log('reset', response);
106103
reset({
107104
[PROFILE_NAME]: response.name,
108105
[LF_PARAM_ID]: response.loadFlowParameterId

0 commit comments

Comments
 (0)