File tree 3 files changed +13
-4
lines changed
3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change
1
+
2
+ # @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
3
+ # The following patterns were generated by expo-cli
4
+
5
+ expo-env.d.ts
6
+ # @end expo-cli
Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ if (process.env.NODE_ENV === 'development') {
40
40
const { AtlasFileSource } = require ( 'expo-atlas/build/src/data/AtlasFileSource' ) ;
41
41
const filePath = path . resolve ( __dirname , './fixture/expo-51-default.jsonl' ) ;
42
42
43
+ // To test the example app, use this instead after exporting the apps/example
44
+ // const filePath = path.resolve(__dirname, '../../apps/example/.expo/atlas.jsonl');
45
+
43
46
global . EXPO_ATLAS_SOURCE = new AtlasFileSource ( filePath ) ;
44
47
}
45
48
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export function BundleSelectForm() {
22
22
const bundlesByPlatform = useMemo ( ( ) => groupBundlesByPlatform ( bundles ) , [ bundles ] ) ;
23
23
24
24
return (
25
- < Select value = { bundle . id } onValueChange = { ( bundle ) => router . setParams ( { bundle } ) } >
25
+ < Select open value = { bundle . id } onValueChange = { ( bundle ) => router . setParams ( { bundle } ) } >
26
26
< SelectTrigger className = "!w-auto" >
27
27
< SelectValue placeholder = "Select a fruit" />
28
28
</ SelectTrigger >
@@ -34,12 +34,12 @@ export function BundleSelectForm() {
34
34
}
35
35
36
36
return (
37
- < SelectGroup key = { platform } >
38
- < SelectLabel className = "m-0.5 capitalize" >
37
+ < SelectGroup key = { platform } className = "my-1" >
38
+ < SelectLabel className = "mx-1 capitalize" >
39
39
< PlatformName platform = { platform } />
40
40
</ SelectLabel >
41
41
{ bundles . length === 0 ? (
42
- < SelectItem disabled value = "none" className = "italic mb-1" >
42
+ < SelectItem disabled value = "none" className = "italic" style = { { paddingTop : 0 } } >
43
43
No bundle available for this platform
44
44
</ SelectItem >
45
45
) : (
You can’t perform that action at this time.
0 commit comments