Skip to content

Commit 219729e

Browse files
committed
fix: add missing isMcpLoading variable
1 parent d27eeac commit 219729e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/home/sections/navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export function Navbar({ sidebarOpen = false }: { sidebarOpen?: boolean }) {
162162
};
163163

164164
// Fetch MCP credential profiles
165-
const { data: mcpProfilesData = [] } = useQuery({
165+
const { data: mcpProfilesData = [], isLoading: isMcpLoading } = useQuery({
166166
queryKey: ['mcp-credential-profiles'],
167167
queryFn: async () => {
168168
const apiClient = createClerkBackendApi(getToken);

0 commit comments

Comments
 (0)