Index: client_app/src/components/main/App.js
===================================================================
--- client_app/src/components/main/App.js	(revision db94dbdf87bb603969c3da96936e020333cf7276)
+++ client_app/src/components/main/App.js	(revision 5b363179ee836c8dc9a017bf6e365a57a9e21678)
@@ -60,5 +60,5 @@
                       <Route path={"/register/job"} render={() => <JobRegister accountId={this.state.currentUser.id} type={this.state.currentUser.type} updateJobs={this.updateJobs} />}/>
                       <Route path={"/register/internship"} render={() => <InternshipRegister accountId={this.state.currentUser.id} type={this.state.currentUser.type} updateInternships={this.updateInternships} />}/>
-                      <Route path={"/register/project"} render={() => <ProjectRegister accountId={this.state.currentUser.id} type={this.state.currentUser.type} updateInternships={this.updateProjects} />}/>
+                      <Route path={"/register/project"} render={() => <ProjectRegister accountId={this.state.currentUser.id} type={this.state.currentUser.type} updateProjects={this.updateProjects} />}/>
                       <Route path={"/logout"} render={() => <Redirect to={"/login"}/>}/>
                       <Route path={"/"} render={() => <Redirect to={"/login"}/>}/>
Index: client_app/src/components/work_register/internship_register.js
===================================================================
--- client_app/src/components/work_register/internship_register.js	(revision db94dbdf87bb603969c3da96936e020333cf7276)
+++ client_app/src/components/work_register/internship_register.js	(revision 5b363179ee836c8dc9a017bf6e365a57a9e21678)
@@ -68,14 +68,8 @@
         }
 
-        if(this.state.success===true){
-            if(this.state.type==="COMPANY"){
-                return(
-                    <Redirect to={"/company/internships"}/>
-                );
-            }else{
-                return(
-                    <Redirect to={"/profile"}/>
-                );
-            }
+        if(this.state.success===true) {
+            return (
+                <Redirect to={"/company/internships"}/>
+            );
         }
 
Index: client_app/src/components/work_register/project_register.js
===================================================================
--- client_app/src/components/work_register/project_register.js	(revision db94dbdf87bb603969c3da96936e020333cf7276)
+++ client_app/src/components/work_register/project_register.js	(revision 5b363179ee836c8dc9a017bf6e365a57a9e21678)
@@ -54,10 +54,9 @@
             this.state.skillsRequired
         ).then(res => {
-            console.log(res);
-            // this.props.updateProjects(res.data);
-            // this.setState({
-            //     success: true,
-            //     error: null
-            // })
+            this.props.updateProjects(res.data);
+            this.setState({
+                success: true,
+                error: null
+            })
         }).catch(err => {
             console.log(err);
@@ -77,13 +76,7 @@
 
         if(this.state.success===true){
-            if(this.state.type==="TEAM"){
-                return(
-                    <Redirect to={"/company/jobs"}/>
-                );
-            }else{
-                return(
-                    <Redirect to={"/team/jobs"}/>
-                );
-            }
+            return (
+                <Redirect to={"/team/projects"}/>
+            );
         }
 
