Refactoring on some files

This commit is contained in:
charlesgauthereau
2025-09-23 19:42:38 +02:00
parent 654ff6b9a5
commit 2d2453acf7
16 changed files with 36 additions and 45 deletions
@@ -42,8 +42,6 @@ export const UserForm = (props: UserFormProps) => {
const mutation = useMutation({
mutationFn: async (values: UserType) => {
console.log("values", values);
console.log(props.userId);
const updateUser = await updateUserAction({
id: props.userId ?? "-",
data: values,