Merge pull request #2682 from AreYouRlyScared/minorfixes

Update database page layout to be more consistent with other pages, fixes text visibility issues
This commit is contained in:
Dane Everitt 2020-11-10 20:15:26 -08:00 committed by GitHub
commit 0c8b7101c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 47 additions and 44 deletions

View file

@ -19,7 +19,7 @@ const Toast = styled.div`
}
`;
const CopyOnClick: React.FC<{ text: string }> = ({ text, children }) => {
const CopyOnClick: React.FC<{ text: any }> = ({ text, children }) => {
const [ copied, setCopied ] = useState(false);
useEffect(() => {