From 112988c8fb1dbc556b18dc5219ef7334a57724fb Mon Sep 17 00:00:00 2001 From: Clayton Wilson Date: Thu, 31 Oct 2019 15:46:33 -0400 Subject: [PATCH] Add '@' to profile handle --- twistter-frontend/src/pages/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twistter-frontend/src/pages/user.js b/twistter-frontend/src/pages/user.js index ef764b3..824412e 100644 --- a/twistter-frontend/src/pages/user.js +++ b/twistter-frontend/src/pages/user.js @@ -76,7 +76,7 @@ class user extends Component { const classes = this.props; let profileMarkup = this.state.profile ? (
- {this.state.profile} {this.state.verified ? (): (null)} + @{this.state.profile} {this.state.verified ? (): (null)}
) : (

loading username...

);