diff --git a/lib/ui/company_gateway/view/company_gateway_view.dart b/lib/ui/company_gateway/view/company_gateway_view.dart index 9db02a34d..cae0c457c 100644 --- a/lib/ui/company_gateway/view/company_gateway_view.dart +++ b/lib/ui/company_gateway/view/company_gateway_view.dart @@ -158,18 +158,18 @@ class _CompanyGatewayOverview extends StatelessWidget { children: [ Expanded( child: AppButton( - iconData: isDesktop(context) ? MdiIcons.import : null, - label: localization.importCustomers.toUpperCase(), - onPressed: () => viewModel.onStripeImportPressed(context), + iconData: + isDesktop(context) ? MdiIcons.checkCircleOutline : null, + label: localization.verifyCustomers.toUpperCase(), + onPressed: () => viewModel.onStripeVerifyPressed(context), ), ), SizedBox(width: kTableColumnGap), Expanded( child: AppButton( - iconData: - isDesktop(context) ? MdiIcons.checkCircleOutline : null, - label: localization.verifyCustomers.toUpperCase(), - onPressed: () => viewModel.onStripeVerifyPressed(context), + iconData: isDesktop(context) ? MdiIcons.import : null, + label: localization.importCustomers.toUpperCase(), + onPressed: () => viewModel.onStripeImportPressed(context), ), ), ],