diff --git a/src/components/Article/FullArticle.tsx b/src/components/Article/FullArticle.tsx index 9710b2ae..c7977bb5 100644 --- a/src/components/Article/FullArticle.tsx +++ b/src/components/Article/FullArticle.tsx @@ -29,6 +29,7 @@ import { VideoPlayer } from '../_shared/VideoPlayer' import { AuthorBadge } from '../Author/AuthorBadge' import { CardTopic } from '../Feed/CardTopic' import { FeedArticlePopup } from '../Feed/FeedArticlePopup' +import { Modal } from '../Nav/Modal' import { TableOfContents } from '../TableOfContents' import { AudioHeader } from './AudioHeader' @@ -294,7 +295,6 @@ export const FullArticle = (props: Props) => { const updateIframeSizes = () => { if (!articleContainer?.current || !props.article.body) return const iframes = articleContainer?.current?.querySelectorAll('iframe') - console.log('!!! iframes:', iframes) if (!iframes) return const containerWidth = articleContainer.current?.offsetWidth iframes.forEach((iframe) => { @@ -621,7 +621,9 @@ export const FullArticle = (props: Props) => { - + + + { } return ( - + <>

{props.title || t('Invite collaborators')}

@@ -182,6 +182,6 @@ export const InviteMembers = (props: Props) => { />
-
+ ) }