diff options
| author | Wes Bos <wesbos@gmail.com> | 2018-04-05 13:54:22 -0400 |
|---|---|---|
| committer | Wes Bos <wesbos@gmail.com> | 2018-04-05 13:54:22 -0400 |
| commit | f4f10d5eb690a33dd1c112358457a2b987297f26 (patch) | |
| tree | d97326763dd016c13a068fb7dee40fc0b9667f83 /frontend/pages/admin | |
| parent | a75b2491758a451283e2a373bb3fbe886520b345 (diff) | |
work
Diffstat (limited to 'frontend/pages/admin')
| -rw-r--r-- | frontend/pages/admin/update.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/frontend/pages/admin/update.js b/frontend/pages/admin/update.js index 2731f05..2f445d7 100644 --- a/frontend/pages/admin/update.js +++ b/frontend/pages/admin/update.js @@ -2,12 +2,15 @@ import { Component } from 'react'; import withData from '../../lib/withData'; import UpdateItem from '../../components/UpdateItem'; import Page from '../../components/Page'; +import PleaseSignIn from '../../components/PleaseSignIn'; class Home extends Component { render() { return ( <Page> - <UpdateItem id={this.props.url.query.id} /> + <PleaseSignIn> + <UpdateItem id={this.props.url.query.id} /> + </PleaseSignIn> </Page> ); } |
