diff --git a/electron/servers/nextjs/app/(presentation-generator)/(dashboard)/dashboard/components/PresentationCard.tsx b/electron/servers/nextjs/app/(presentation-generator)/(dashboard)/dashboard/components/PresentationCard.tsx
index 3da715e3..87658cf4 100644
--- a/electron/servers/nextjs/app/(presentation-generator)/(dashboard)/dashboard/components/PresentationCard.tsx
+++ b/electron/servers/nextjs/app/(presentation-generator)/(dashboard)/dashboard/components/PresentationCard.tsx
@@ -111,14 +111,14 @@ export const PresentationCard = ({
{new Date(presentation?.created_at).toLocaleDateString()}
diff --git a/electron/servers/nextjs/app/(presentation-generator)/components/PresentationRender.tsx b/electron/servers/nextjs/app/(presentation-generator)/components/PresentationRender.tsx
index e2781787..be00436d 100644
--- a/electron/servers/nextjs/app/(presentation-generator)/components/PresentationRender.tsx
+++ b/electron/servers/nextjs/app/(presentation-generator)/components/PresentationRender.tsx
@@ -6,7 +6,7 @@ import { V1ContentRender } from '../../(presentation-generator)/components/V1Con
const BASE_WIDTH = 1280;
const BASE_HEIGHT = 720;
-const SlideScale = ({ slide, theme }: { slide: any, theme?: any }) => {
+const SlideScale = ({ slide, theme, isClickable = false }: { slide: any, theme?: any, isClickable?: boolean }) => {
const containerRef = useRef