diff options
Diffstat (limited to 'vnext')
-rw-r--r-- | vnext/src/components/Settings.js | 2 | ||||
-rw-r--r-- | vnext/src/views/index.html | 11 |
2 files changed, 1 insertions, 12 deletions
diff --git a/vnext/src/components/Settings.js b/vnext/src/components/Settings.js index 44f02902..14c81e38 100644 --- a/vnext/src/components/Settings.js +++ b/vnext/src/components/Settings.js @@ -42,7 +42,7 @@ export default class Settings extends React.Component { } emailChanged = (event) => { let newState = update(this.state, { - me: { activeEmail: {$set: event.target.value }} + me: { activeEmail: { $set: event.target.value } } }); this.setState(newState); console.log('email update'); diff --git a/vnext/src/views/index.html b/vnext/src/views/index.html index 8cb189df..b26d181f 100644 --- a/vnext/src/views/index.html +++ b/vnext/src/views/index.html @@ -1,6 +1,5 @@ <!DOCTYPE html> <html prefix="og: http://ogp.me/ns#"> - <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> @@ -27,16 +26,6 @@ <link rel="icon" type="image/png" sizes="96x96" href="//i.juick.com/favicon-96x96.png" /> <link rel="icon" type="image/png" sizes="16x16" href="//i.juick.com/favicon-16x16.png" /> <link rel="manifest" href="//i.juick.com/manifest.json" /> - <script type="application/ld+json"> -{ - "@context": "http://schema.org", - "@id": "http://juick.com/#juick-logo", - "@type": "ImageObject", - "url": "http://juick.com/logo.png", - "width": 110, - "height": 36 -} - </script> </head> <body> |