From e0db6590a73853327d74dff9235a7b915aa27372 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Thu, 4 Sep 2025 05:13:47 +0000 Subject: (최겸) Agentforce POC 종료에 따른 관련 코드 제거 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/[lng]/test/agentforce-poc-faq/page.tsx | 62 ------ app/[lng]/test/agentforce-poc-summary/page.tsx | 291 ------------------------- lib/dashboard/dashboard-client.tsx | 79 +------ 3 files changed, 1 insertion(+), 431 deletions(-) delete mode 100644 app/[lng]/test/agentforce-poc-faq/page.tsx delete mode 100644 app/[lng]/test/agentforce-poc-summary/page.tsx diff --git a/app/[lng]/test/agentforce-poc-faq/page.tsx b/app/[lng]/test/agentforce-poc-faq/page.tsx deleted file mode 100644 index 493828d6..00000000 --- a/app/[lng]/test/agentforce-poc-faq/page.tsx +++ /dev/null @@ -1,62 +0,0 @@ -'use client' - -import { useState, useRef } from 'react' - -export default function AgentforcePocPage() { - const [isLoading, setIsLoading] = useState(true) - const iframeRef = useRef(null) - - const handleIframeLoad = () => { - setIsLoading(false) - } - - const refreshIframe = () => { - if (iframeRef.current) { - setIsLoading(true) - iframeRef.current.src = iframeRef.current.src - } - } - - return ( -
-
-
-

- Agentforce POC -

- -
- -
- {isLoading && ( -
-
-
-

로딩 중...

-
-
- )} - -
-