import { useLocation } from "react-router-dom" import { getApiKeyTypeFromPathname } from "../common/utils" import { ApiKeyManagementListTable } from "./components/api-key-management-list-table" import { SingleColumnPage } from "../../../components/layout/pages" import { useExtension } from "../../../providers/extension-provider" export const ApiKeyManagementList = () => { const { pathname } = useLocation() const { getWidgets } = useExtension() const keyType = getApiKeyTypeFromPathname(pathname) return ( ) }