File tree Expand file tree Collapse file tree 2 files changed +8
-11
lines changed Expand file tree Collapse file tree 2 files changed +8
-11
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
3
<plist version =" 1.0" >
4
- <dict >
5
- <key >aps-environment</key >
6
- <string >development</string >
7
- </dict >
8
- </plist >
4
+ <dict />
5
+ </plist >
Original file line number Diff line number Diff line change @@ -15,17 +15,17 @@ import Toast from "react-native-toast-message";
15
15
import { fetchImages , fetchSuggestion , generateImage } from "../fetchData" ;
16
16
import AsyncStorage from "@react-native-async-storage/async-storage" ;
17
17
import imagesState from "../state/imageState" ;
18
- import { ImageUrl } from ' ../types/imageUrl' ;
18
+ import { ImageUrl } from " ../types/imageUrl" ;
19
19
20
20
interface InputPromptProps {
21
- flatListRef : React . RefObject < FlatList < ImageUrl > > ,
22
- isFirstRender : React . MutableRefObject < boolean >
21
+ flatListRef : React . RefObject < FlatList < ImageUrl > > ;
22
+ isFirstRender : React . MutableRefObject < boolean > ;
23
23
}
24
24
25
25
const InputPrompt : React . FC < InputPromptProps > = ( {
26
- flatListRef,
27
- isFirstRender,
28
- } ) => {
26
+ flatListRef,
27
+ isFirstRender,
28
+ } ) => {
29
29
const setImages = useSetRecoilState ( imagesState ) ;
30
30
const [ suggestion , setSuggestion ] = useRecoilState ( suggestionState ) ;
31
31
const [ inputValue , setInputValue ] = useState ( "" ) ;
You can’t perform that action at this time.
0 commit comments