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
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(() => {