aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vnext/src/App.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/vnext/src/App.js b/vnext/src/App.js
index af12c3a7..730deb19 100644
--- a/vnext/src/App.js
+++ b/vnext/src/App.js
@@ -29,7 +29,7 @@ export default class App extends React.Component {
}
this.state = {
visitor: {
- uid: 0,
+ uid: cookies.load('_juick_uid') || 0,
hash: cookies.load('hash')
}
};
@@ -232,6 +232,7 @@ export default class App extends React.Component {
);
}
auth = (visitor) => {
+ cookies.save('_juick_uid', visitor.uid, { path: '/' });
this.setState({
visitor: visitor
});