diff --git a/app/dashboard/folders/page.tsx b/app/dashboard/folders/page.tsx index dbd822e..be3c533 100644 --- a/app/dashboard/folders/page.tsx +++ b/app/dashboard/folders/page.tsx @@ -164,6 +164,16 @@ export default function FoldersPage() { const [showFilters, setShowFilters] = useState(false) const [currentPath, setCurrentPath] = useState(["Racine"]) const [actionModal, setActionModal] = useState({ type: null, folder: null, folders: [] }) + const [showCreateFolderModal, setShowCreateFolderModal] = useState(false) + + // 4NK Integration states + const [isConnected, setIsConnected] = useState(false) + const [showAuthModal, setShowAuthModal] = useState(false) + const [processes, setProcesses] = useState(null) + const [myProcesses, setMyProcesses] = useState([]) + const [userPairingId, setUserPairingId] = useState(null) + const [pairingIdInitialized, setPairingIdInitialized] = useState(false) + const iframeUrl = 'https://dev3.4nkweb.com' // Modal states const [inviteMessage, setInviteMessage] = useState("")