Minor adjustments

This commit is contained in:
Ilyas Foo 2022-04-06 13:51:26 +08:00
parent 1f8988675f
commit 3050cacc39
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ export default ( { width = 157, height = 148, ...props } ) => (
<svg
width={ width }
height={ height }
viewBox={ `0 10 ${ width } ${ height }` }
viewBox={ `0 13 ${ width } ${ height }` }
fill="none"
xmlns="http://www.w3.org/2000/svg"
{ ...props }

View File

@ -308,15 +308,15 @@ export const PaymentGatewaySuggestions = ( { onComplete, query } ) => {
heading={ __( 'Other payment methods', 'woocommerce' ) }
onToggle={ trackToggle }
>
{ enabledSection }
{ additionalSection }
{ enabledSection }
{ offlineSection }
</Toggle>
</>
) : (
<>
{ enabledSection }
{ additionalSection }
{ enabledSection }
{ offlineSection }
</>
) }