File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
app/containers/ActionSheet Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 4343 - name : Commit and push eslint changes
4444 if : steps.changes.outputs.changes == 'true'
4545 run : |
46+ echo "changes=false" >> $GITHUB_OUTPUT
4647 git config user.name "${{ github.actor }}"
4748 git config user.email "${{ github.actor }}@users.noreply.github.com"
4849 git add .
Original file line number Diff line number Diff line change @@ -129,9 +129,7 @@ const ActionSheet = React.memo(
129129 const fraction = Math . min ( contentHeight / windowHeight , ACTION_SHEET_MAX_HEIGHT_FRACTION ) ;
130130 const contentDetent = Math . max ( 0.25 , fraction ) ;
131131 detents =
132- contentDetent > ACTION_SHEET_MIN_HEIGHT_FRACTION
133- ? [ ACTION_SHEET_MIN_HEIGHT_FRACTION , contentDetent ]
134- : [ contentDetent ] ;
132+ contentDetent > ACTION_SHEET_MIN_HEIGHT_FRACTION ? [ ACTION_SHEET_MIN_HEIGHT_FRACTION , contentDetent ] : [ contentDetent ] ;
135133 } else {
136134 detents = [ ACTION_SHEET_MIN_HEIGHT_FRACTION , 'auto' ] ;
137135 }
You can’t perform that action at this time.
0 commit comments