diff options
author | Vitaly Takmazov | 2022-11-01 20:28:30 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:58 +0300 |
commit | 4b8d5219a2320e6d3d1e1260574bd6042c97b27e (patch) | |
tree | 11f5607560b2f45b3782a88fdc2962cf696b50f5 /vnext/src/ui/Settings.js | |
parent | b197e2616db62e25227548bfdb085f4e1f2908f0 (diff) |
Add page titles
Diffstat (limited to 'vnext/src/ui/Settings.js')
-rw-r--r-- | vnext/src/ui/Settings.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vnext/src/ui/Settings.js b/vnext/src/ui/Settings.js index 3ae33567..6575fb87 100644 --- a/vnext/src/ui/Settings.js +++ b/vnext/src/ui/Settings.js @@ -7,6 +7,7 @@ import Icon from './Icon'; import UploadButton from './UploadButton'; import Avatar from './Avatar'; import { useVisitor } from './VisitorContext'; +import { Helmet } from 'react-helmet'; /** * @param {{ onChange: Function }} props @@ -102,6 +103,9 @@ export default function Settings({ onChange }) { }; return ( <div className="msg-cont"> + <Helmet> + <title>Settings</title> + </Helmet> <fieldset> <legend><Icon name="ei-user" size="m" />Changing your avatar</legend> <ChangeAvatarForm onChange={onChange} /> |