Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tapixhx committed Jun 28, 2020
1 parent e354ead commit 42aab57
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions chat-client/.firebase/hosting.ZGlzdA.cache
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ assets/images/video-off.png,1591039185876,2c2181a809d88330d0fbcd92c50f1a8239a741
assets/images/video.png,1591039185876,bbb674752a337e00ada8e91df3473895c07f36ed41603d03aab16637974e1fa5
assets/images/wfh_9.svg,1591039185876,a573c47f40be1ceb7ef984f3a88d613fa8633d4448fc5e3f9b31f1f022e0bdbe
assets/images/whitesilogo.png,1591039185880,6038d1b0b17297494d7514156f344909aacb645d0dc4318038adde39f7454b29
index.html,1591985825503,e3f29d35eb7a8e7da571a16bfebb1ecf4299161d3cf0e68fcc69dfd6e4ef55f5
3rdpartylicenses.txt,1591985802255,0694dce82e2bc3026d2a194a72a896b3d1faaae09afcffdc0508f80c7a7fbde6
styles.3a946b3bdfde9236886d.css,1591985802256,634e3f22c9bd603f775b75bff756796d15ffd4860b2c2e823159c47f7d912c2d
main-es2015.a39e5fb2cfbdcc8600de.js,1591985823340,9494ce4378c9ff332f8fa547941e2234fa5cda14c91714130ab3801d27c4d3a4
main-es5.a39e5fb2cfbdcc8600de.js,1591985821313,60e61d0c4cc1e916584e479bebed20bc30cff61ba23258a6c1248be6ba39d890
index.html,1593359199352,e3f29d35eb7a8e7da571a16bfebb1ecf4299161d3cf0e68fcc69dfd6e4ef55f5
styles.3a946b3bdfde9236886d.css,1593359198501,634e3f22c9bd603f775b75bff756796d15ffd4860b2c2e823159c47f7d912c2d
3rdpartylicenses.txt,1593359198490,0694dce82e2bc3026d2a194a72a896b3d1faaae09afcffdc0508f80c7a7fbde6
main-es2015.a39e5fb2cfbdcc8600de.js,1591985823334,9494ce4378c9ff332f8fa547941e2234fa5cda14c91714130ab3801d27c4d3a4
main-es5.a39e5fb2cfbdcc8600de.js,1591985821300,60e61d0c4cc1e916584e479bebed20bc30cff61ba23258a6c1248be6ba39d890
6 changes: 3 additions & 3 deletions chat-client/src/app/navbar/navbar.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,16 +113,16 @@ export class NavbarComponent implements OnInit {
this.serverservice.signup(value)
.subscribe(
(response) => {
// console.log(response);
console.log(response);
this.id = response;
this.wnt_signup = false;
this.router.navigate(['/verify', this.id.userId]);
this.appcomponent.load=false;
},
(error) => {
// console.log(error);
// console.log(error.error.data[0].msg);
this.appcomponent.load=false;
this.appcomponent.error(error.error.error);
this.appcomponent.error(error.error.data[0].msg);
}
)
}
Expand Down

0 comments on commit 42aab57

Please sign in to comment.