File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ import Icon from 'react-native-vector-icons/FontAwesome';
66
77const GenerateBtn = ( { onGenerateWithAI, onGenerate, currentPlan } ) => {
88 const [ showDropdown , setShowDropdown ] = useState ( false ) ;
9- const [ dropdownText , setDropdownText ] = useState ( 'Generate - AI ' ) ;
10- const [ useAI , setUseAI ] = useState ( false ) ;
9+ const [ dropdownText , setDropdownText ] = useState ( 'Generate' ) ;
10+ const [ useAI , setUseAI ] = useState ( true ) ;
1111 const [ gradientAnimation ] = useState ( new Animated . Value ( 0 ) ) ;
1212 const [ remainingAiGenerateCount , setRemainingAiGenerateCount ] = useState ( 2 ) ;
1313
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import { generateRandomColorPaletteWithLockedColors } from '../libs/ColorHelper'
2020import GenerateBtn from '../components/GenerateBtn' ;
2121import useApplicationStore from '../hooks/useApplicationStore' ;
2222import { generate as aiGenerate } from '../network/color_palette' ;
23- import { NUMBER_OF_COLORS_PRO_COUNT } from '../libs/constants' ;
23+ import { NUMBER_OF_COLORS_PRO_COUNT } from '../libs/constants' ;
2424
2525function uniqueColors ( colors ) {
2626 let set = new Set ( ) ;
You can’t perform that action at this time.
0 commit comments