File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const App = () => {
39
39
</ button >
40
40
</ div >
41
41
< div >
42
- { isPickerDropPaneVisible && < PickerDropPane apikey = 'YOUR_APIKEY' / >}
42
+ { isPickerDropPaneVisible && < PickerDropPane apikey = 'YOUR_APIKEY' > < div style = { { height : '800px' } } /> </ PickerDropPane > }
43
43
{ isPickerInlineVisible && < PickerInline apikey = 'YOUR_APIKEY' /> }
44
44
{ isPickerOverlayVisible && < PickerOverlay apikey = 'YOUR_APIKEY' /> }
45
45
</ div >
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ const PickerDropPane = ({
26
26
if ( children ) {
27
27
return React . cloneElement ( children , { id : containerId } ) ;
28
28
}
29
- return < div style = { { height : '500px' } } id = { containerId } /> ;
29
+ return < div id = { containerId } /> ;
30
30
} ;
31
31
return render ( ) ;
32
32
} ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ const PickerOverlay = ({
23
23
if ( children ) {
24
24
return React . cloneElement ( children , { id : containerId } ) ;
25
25
}
26
- return < div style = { { height : '500px' } } id = { containerId } /> ;
26
+ return < div id = { containerId } /> ;
27
27
} ;
28
28
return render ( ) ;
29
29
} ;
You can’t perform that action at this time.
0 commit comments