diff --git a/frontend/src/features/admin-form/create/builder-and-design/BuilderAndDesignContent/MagicFormBuilderModal/TextPromptIdeasSelector.tsx b/frontend/src/features/admin-form/create/builder-and-design/BuilderAndDesignContent/MagicFormBuilderModal/TextPromptIdeasSelector.tsx deleted file mode 100644 index f1f7e0abff..0000000000 --- a/frontend/src/features/admin-form/create/builder-and-design/BuilderAndDesignContent/MagicFormBuilderModal/TextPromptIdeasSelector.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { BiBulb } from 'react-icons/bi' -import { Box, Button, Flex, Stack, Text } from '@chakra-ui/react' - -export const TextPromptIdeasSelector = ({ - promptIdeas, - handleIdeaClick, -}: { - promptIdeas: string[] - handleIdeaClick: (idea: string) => void -}): JSX.Element => { - return ( - - - - - Try one of these - - - {!promptIdeas?.length ? ( - No prompt ideas found - ) : ( - - {promptIdeas.map((idea: string) => ( - - ))} - - )} - - ) -}