import posthog from "posthog-js"; import React from "react"; import { useSelector } from "react-redux"; import { SuggestionItem } from "#/components/features/suggestions/suggestion-item"; import { useAuth } from "#/context/auth-context"; import { DownloadModal } from "#/components/shared/download-modal"; import type { RootState } from "#/store"; interface ActionSuggestionsProps { onSuggestionsClick: (value: string) => void; } export function ActionSuggestions({ onSuggestionsClick, }: ActionSuggestionsProps) { const { gitHubToken } = useAuth(); const { selectedRepository } = useSelector( (state: RootState) => state.initialQuery, ); const [isDownloading, setIsDownloading] = React.useState(false); const [hasPullRequest, setHasPullRequest] = React.useState(false); const handleDownloadClose = () => { setIsDownloading(false); }; return (