Skip to content

Commit 3b564ba

Browse files
committed
borrar id en componente
1 parent 73b2e75 commit 3b564ba

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/modules/users/edit-reset-password/edit-reset-password.component.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,12 @@ import { Button, IconButton, TextField } from '@mui/material';
55
import { Visibility, VisibilityOff, ContentCopy } from '@mui/icons-material';
66
import { usePassword } from '../create/use-password.hook';
77

8-
interface Props {
9-
id: string;
10-
}
11-
12-
export const EditResetPasswordComponent: React.FC<Props> = props => {
13-
const { id } = props;
14-
8+
export const EditResetPasswordComponent: React.FC = () => {
159
const { showPassword, toggleShowPassword } = usePassword();
1610
const classes = useWithTheme(innerClasses);
1711
return (
1812
<div className={classes.root}>
1913
<div className={classes.sectionContainer}>
20-
<h6>Usuario: ${id}</h6>
2114
<div className={classes.passwordFieldContainer}>
2215
<TextField
2316
name="contraseña"

0 commit comments

Comments
 (0)