diff --git a/src/components/orgAuthTokenNote.tsx b/src/components/orgAuthTokenNote.tsx index 98aa235d387b5..f7f25723375ac 100644 --- a/src/components/orgAuthTokenNote.tsx +++ b/src/components/orgAuthTokenNote.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React, {Fragment} from 'react'; import {useLocation} from '@reach/router'; import {graphql, useStaticQuery} from 'gatsby'; @@ -23,20 +23,27 @@ export function OrgAuthTokenNote() { const url = data.site.siteMetadata.siteUrl + location.pathname; return ( - - - {' '} - You can{' '} - - manually create an Auth Token - {' '} - or{' '} - - sign in - {' '} - to create a token directly from the docs. - - ); - + + + + You can{' '} + + manually create an Auth Token + {' '} + or{' '} + + sign in + {' '} + to create a token directly from the docs. + + + + + + A created token will only be visible once right after creation - make sure to + copy it! + + + ); }