diff --git a/context/app/static/js/components/detailPage/Citation/Citation.tsx b/context/app/static/js/components/detailPage/Citation/Citation.tsx index f6b8a9e64a..213d6426c3 100644 --- a/context/app/static/js/components/detailPage/Citation/Citation.tsx +++ b/context/app/static/js/components/detailPage/Citation/Citation.tsx @@ -6,6 +6,7 @@ import LabelledSectionText from 'js/shared-styles/sections/LabelledSectionText'; import ContentCopyIcon from '@mui/icons-material/ContentCopyRounded'; import { useHandleCopyClick } from 'js/hooks/useCopyText'; import IconLink from 'js/shared-styles/Links/iconLinks/IconLink'; +import { SecondaryBackgroundTooltip } from 'js/shared-styles/tooltips'; interface Contributor { last_name: string; @@ -37,16 +38,18 @@ function ExternalDoiLink({ doi_url }: { doi_url: string }) { function InternalDoiLink({ doi_url }: { doi_url: string }) { const copy = useHandleCopyClick(); return ( - { - e.preventDefault(); - copy(doi_url); - }} - icon={} - > - {doi_url} - + + { + e.preventDefault(); + copy(doi_url); + }} + icon={} + > + {doi_url} + + ); }