diff --git a/src/components/FrameRenderer/FrameRenderer.astro b/src/components/FrameRenderer/FrameRenderer.astro index 949f7ee97..fb90eb446 100644 --- a/src/components/FrameRenderer/FrameRenderer.astro +++ b/src/components/FrameRenderer/FrameRenderer.astro @@ -1,12 +1,10 @@ --- import Loader from '../Loader.astro'; -import ShareIcons from '../ShareIcons/ShareIcons.astro'; -import TopicOverlay from './TopicOverlay.astro'; +import TopicOverlay from '../TopicOverlay/TopicOverlay.astro'; import './FrameRenderer.css'; export interface Props { roadmapId: string; - description: string; jsonUrl: string; dimensions?: { width: number; @@ -14,12 +12,9 @@ export interface Props { }; } -const { roadmapId, jsonUrl, dimensions = null, description } = Astro.props; +const { roadmapId, jsonUrl, dimensions = null } = Astro.props; --- - - -
+ +