From 49a4d55f1e808c1857b93dc0ff844f9ff5bead16 Mon Sep 17 00:00:00 2001 From: Clayton Wilson Date: Tue, 3 Dec 2019 14:04:40 -0500 Subject: [PATCH] Rename edit class to editProfile to be more descriptive --- twistter-frontend/src/pages/editProfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/twistter-frontend/src/pages/editProfile.js b/twistter-frontend/src/pages/editProfile.js index d90b601..703fa67 100644 --- a/twistter-frontend/src/pages/editProfile.js +++ b/twistter-frontend/src/pages/editProfile.js @@ -41,7 +41,7 @@ const styles = { } }; -export class edit extends Component { +export class editProfile extends Component { // Runs as soon as the page loads. // Sets the default values of all the textboxes to the data // that is stored in the database for the user. @@ -271,8 +271,8 @@ export class edit extends Component { } } -edit.propTypes = { +editProfile.propTypes = { classes: PropTypes.object.isRequired }; -export default withStyles(styles)(edit); +export default withStyles(styles)(editProfile);