diff --git a/ci/prod/.env.runtime b/ci/prod/.env.runtime index 6abcbce..7418902 100644 --- a/ci/prod/.env.runtime +++ b/ci/prod/.env.runtime @@ -70,7 +70,6 @@ MNTX_GATEWAY_METRICS_PORT=9404 MNTX_GATEWAY_HTTP_PORT=8084 MONETIX_BASE_URL=https://api.txflux.com - # FX oracle stack FX_ORACLE_DIR=fx_oracle FX_ORACLE_COMPOSE_PROJECT=sendico-fx-oracle diff --git a/frontend/pshared/lib/models/recipient/recipient.dart b/frontend/pshared/lib/models/recipient/recipient.dart index 9ffeea2..50b32ee 100644 --- a/frontend/pshared/lib/models/recipient/recipient.dart +++ b/frontend/pshared/lib/models/recipient/recipient.dart @@ -84,14 +84,13 @@ Recipient newRecipient({ String? description, String? avatarUrl, bool isArchived = false, -}) => - Recipient( - storable: newStorable(), - permissionBound: newPermissionBound(organizationBound: newOrganizationBound(organizationRef: organizationRef)), - describable: newDescribable(name: name, description: description), - email: email, - status: status, - type: type, - avatarUrl: avatarUrl, - isArchived: isArchived, - ); \ No newline at end of file +}) => Recipient( + storable: newStorable(), + permissionBound: newPermissionBound(organizationBound: newOrganizationBound(organizationRef: organizationRef)), + describable: newDescribable(name: name, description: description), + email: email, + status: status, + type: type, + avatarUrl: avatarUrl, + isArchived: isArchived, +); \ No newline at end of file diff --git a/frontend/pshared/lib/provider/recipient/provider.dart b/frontend/pshared/lib/provider/recipient/provider.dart index 80fdb36..756e348 100644 --- a/frontend/pshared/lib/provider/recipient/provider.dart +++ b/frontend/pshared/lib/provider/recipient/provider.dart @@ -1,5 +1,5 @@ -import 'package:pshared/data/mapper/organization/bound.dart'; +import 'package:pshared/data/mapper/recipient/recipient.dart'; import 'package:pshared/models/recipient/filter.dart'; import 'package:pshared/models/recipient/recipient.dart'; import 'package:pshared/models/recipient/status.dart'; diff --git a/frontend/pweb/lib/pages/dashboard/payouts/single/form/details.dart b/frontend/pweb/lib/pages/dashboard/payouts/single/form/details.dart index a4223ed..b4ee53a 100644 --- a/frontend/pweb/lib/pages/dashboard/payouts/single/form/details.dart +++ b/frontend/pweb/lib/pages/dashboard/payouts/single/form/details.dart @@ -51,9 +51,7 @@ class PaymentDetailsSection extends StatelessWidget { const SizedBox(height: toggleSpacing), AnimatedCrossFade( duration: animationDuration, - crossFadeState: isFormVisible - ? CrossFadeState.showFirst - : CrossFadeState.showSecond, + crossFadeState: isFormVisible ? CrossFadeState.showFirst : CrossFadeState.showSecond, firstChild: PaymentMethodForm( key: const ValueKey('formVisible'), isEditable: isEditable,