diff options
Diffstat (limited to 'vnext')
-rw-r--r-- | vnext/src/App.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vnext/src/App.js b/vnext/src/App.js index 3dcecf66..94b2ced5 100644 --- a/vnext/src/App.js +++ b/vnext/src/App.js @@ -32,7 +32,7 @@ export default class App extends React.Component { } this.state = { visitor: { - uid: Number(cookies.load('_juick_uid')), + uid: 0, hash: cookies.load('hash') }, appMarginLeft: 'inherit' @@ -194,7 +194,6 @@ export default class App extends React.Component { ); } auth = (visitor) => { - cookies.save('_juick_uid', visitor.uid, { path: '/' }); this.setState({ visitor: visitor }); |