diff --git a/src/components/CustomRoadmap/RoadmapHeader.tsx b/src/components/CustomRoadmap/RoadmapHeader.tsx index 41b4bad98..a59abb7e6 100644 --- a/src/components/CustomRoadmap/RoadmapHeader.tsx +++ b/src/components/CustomRoadmap/RoadmapHeader.tsx @@ -11,6 +11,7 @@ import { RoadmapActionButton } from './RoadmapActionButton'; import { Lock, Shapes } from 'lucide-react'; import { Modal } from '../Modal'; import { ShareSuccess } from '../ShareOptions/ShareSuccess'; +import { ShareRoadmapButton } from '../ShareRoadmapButton.tsx'; type RoadmapHeaderProps = {}; @@ -44,11 +45,11 @@ export function RoadmapHeader(props: RoadmapHeaderProps) { { resourceId: roadmapId, resourceType: 'roadmap', - } + }, )); } else { ({ error, response } = await httpDelete( - `${baseApiUrl}/v1-delete-roadmap/${roadmapId}` + `${baseApiUrl}/v1-delete-roadmap/${roadmapId}`, )); } @@ -119,7 +120,7 @@ export function RoadmapHeader(props: RoadmapHeaderProps) {
-
+
 All Roadmaps - +
{$canManageCurrentRoadmap && ( @@ -162,9 +161,9 @@ export function RoadmapHeader(props: RoadmapHeaderProps) { )} @@ -183,7 +182,7 @@ export function RoadmapHeader(props: RoadmapHeaderProps) { { const confirmation = window.confirm( - 'Are you sure you want to delete this roadmap?' + 'Are you sure you want to delete this roadmap?', ); if (!confirmation) { diff --git a/src/components/CustomRoadmap/SkeletonRoadmapHeader.tsx b/src/components/CustomRoadmap/SkeletonRoadmapHeader.tsx index 1fcd87a41..6b2b4ff69 100644 --- a/src/components/CustomRoadmap/SkeletonRoadmapHeader.tsx +++ b/src/components/CustomRoadmap/SkeletonRoadmapHeader.tsx @@ -12,7 +12,10 @@ export function SkeletonRoadmapHeader() {
-
+
+
+
+
diff --git a/src/components/Popup/Popup.astro b/src/components/Popup/Popup.astro index b063a43d2..bcdbb3bb0 100644 --- a/src/components/Popup/Popup.astro +++ b/src/components/Popup/Popup.astro @@ -15,7 +15,7 @@ const { id, title, subtitle } = Astro.props;