diff --git a/src/app/floor-plan/FloorPlanProvider.js b/src/app/floor-plan/FloorPlanProvider.js
index ba2a8226..37399ddd 100644
--- a/src/app/floor-plan/FloorPlanProvider.js
+++ b/src/app/floor-plan/FloorPlanProvider.js
@@ -2,8 +2,6 @@
import { correntObjectNoState } from '@/store/settingAtom'
import { notFound, usePathname, useSearchParams } from 'next/navigation'
-// import { ErrorBoundary } from 'next/dist/client/components/error-boundary'
-// import ServerError from '../error'
import { createContext, useReducer, useState } from 'react'
import { useSetRecoilState } from 'recoil'
diff --git a/src/app/floor-plan/layout.js b/src/app/floor-plan/layout.js
index 2a6fb8fd..19c730cf 100644
--- a/src/app/floor-plan/layout.js
+++ b/src/app/floor-plan/layout.js
@@ -3,15 +3,23 @@
import FloorPlanProvider from './FloorPlanProvider'
import FloorPlan from '@/components/floor-plan/FloorPlan'
import CanvasLayout from '@/components/floor-plan/CanvasLayout'
+import { usePathname } from 'next/navigation'
export default function FloorPlanLayout({ children }) {
console.log('๐ ~ FloorPlanLayout ~ FloorPlanLayout:')
+ const pathname = usePathname()
+ console.log('๐ ~ FloorPlanLayout ~ pathname:', pathname)
return (
<>