diff --git a/src/components/mindset/components/PlayerContols/CanvasProgressbar/index.tsx b/src/components/mindset/components/PlayerContols/CanvasProgressbar/index.tsx
deleted file mode 100644
index fd4200e2a..000000000
--- a/src/components/mindset/components/PlayerContols/CanvasProgressbar/index.tsx
+++ /dev/null
@@ -1,86 +0,0 @@
-import { Html, OrbitControls } from '@react-three/drei'
-import { Canvas, useThree } from '@react-three/fiber'
-import { useEffect, useState } from 'react'
-import { Tooltip } from '~/components/common/ToolTip'
-import { nodesWithTimestamp } from '~/components/mindset/data'
-import { Marker } from '../../Marker'
-
-type Props = {
- duration: number
- progress: number
-}
-
-const FullWidthZoom = ({ progressBarWidth }: { progressBarWidth: number }) => {
- const { size, camera } = useThree()
- const [minZoom, setMinZoom] = useState(camera.zoom)
-
- useEffect(() => {
- // Calculate the minimum zoom based on the progress bar width and viewport size
- const calculatedZoom = size.width / progressBarWidth
-
- setMinZoom(calculatedZoom)
- camera.zoom = calculatedZoom
- camera.updateProjectionMatrix()
- }, [size, camera, progressBarWidth])
-
- return
-}
-
-export const ProgressBarCanvas = ({ duration, progress }: Props) => {
- const progressBarWidth = 100 // Width of the progress bar in world units
-
- return (
-
- )
-}