Tweaked some display

This commit is contained in:
2021-07-29 00:37:23 +10:00
parent 462116d980
commit eb370663d2
2 changed files with 3 additions and 3 deletions
+1 -3
View File
@@ -9,7 +9,7 @@ const Reset = props => {
const authTokens = useContext(TokenContext);
//query
query = queryString.parse(props.location.search);
const query = queryString.parse(props.location.search);
//misplaced?
if (authTokens.accessToken || !query.email || !query.token) {
@@ -55,8 +55,6 @@ const Reset = props => {
<button type='submit'>Update Information</button>
</form>
<DeleteAccount className='constricted' />
</div>
);
};