mg-library 1.0.621 → 1.0.623
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/blocks.js +1 -7
- package/package.json +1 -1
package/blocks.js
CHANGED
|
@@ -178,12 +178,6 @@ export function MGLogin(props) {
|
|
|
178
178
|
|
|
179
179
|
const insets = useSafeAreaInsets();
|
|
180
180
|
|
|
181
|
-
/* let cardHeader = (
|
|
182
|
-
<View style={{ flex: 1, flexGrow: 1, flexDirection: 'row' }}>
|
|
183
|
-
<MGText category='h6' style={{ alignSelf: 'center', color: props.colors.primary['500'] }}>{mgFunctionsLib.i18nString('credentials', props.language)}</MGText>
|
|
184
|
-
</View>
|
|
185
|
-
); */
|
|
186
|
-
|
|
187
181
|
let cardHeader = (
|
|
188
182
|
<View>
|
|
189
183
|
<MGText category='h6' style={{ alignSelf: 'center', color: props.colors.primary['500'] }}>{mgFunctionsLib.i18nString('credentials', props.language)}</MGText>
|
|
@@ -336,7 +330,7 @@ export function MGCurrentAccount(props) {
|
|
|
336
330
|
{props.goBack != undefined &&
|
|
337
331
|
props.goBack
|
|
338
332
|
}
|
|
339
|
-
<MGCard style={{ marginHorizontal: 30, marginBottom: 10 }}>
|
|
333
|
+
<MGCard style={{ marginHorizontal: 30, marginTop: 10, marginBottom: 10 }}>
|
|
340
334
|
<View style={{ alignItems: 'center' }}>
|
|
341
335
|
<MGText category='p1'>{mgFunctionsLib.i18nString('balance', props.language)}</MGText>
|
|
342
336
|
<MGText category='h3'>{props.balanceComposition.total._asCurrency(props.company.currencySymbol)}</MGText>
|