fixed providers initialization
Some checks failed
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful
ci/woodpecker/push/bump_version Pipeline failed

This commit is contained in:
Stephan D
2025-11-26 18:17:30 +01:00
parent 2ef9ac24a1
commit da57b1d2e0
3 changed files with 5 additions and 5 deletions

View File

@@ -5,6 +5,6 @@ class Constants {
class AppConfig {
static const String appName = String.fromEnvironment(
'APP_NAME',
defaultValue: 'sendico',
defaultValue: 'Sendico',
);
}

View File

@@ -64,12 +64,11 @@ void main() async {
create: (_) => TwoFactorProvider(),
update: (context, accountProvider, provider) => provider!..update(accountProvider),
),
ChangeNotifierProvider(create: (_) => OrganizationsProvider()),
ChangeNotifierProxyProvider<OrganizationsProvider, PermissionsProvider>(
create: (_) => PermissionsProvider(),
update: (context, orgnization, provider) => provider!..update(orgnization),
),
ChangeNotifierProvider(create: (_) => TwoFactorProvider()),
ChangeNotifierProvider(create: (_) => OrganizationsProvider()),
ChangeNotifierProvider(create: (_) => CarouselIndexProvider()),
ChangeNotifierProvider(

View File

@@ -1,10 +1,11 @@
import 'package:flutter/material.dart';
import 'package:pweb/config/constants.dart';
import 'package:pweb/generated/i18n/app_localizations.dart';
import 'package:pweb/config/constants.dart';
import 'package:pweb/widgets/hspacer.dart';
import 'package:pweb/widgets/logo.dart';
import 'package:pweb/generated/i18n/app_localizations.dart';
class LoginHeader extends StatelessWidget {
const LoginHeader({super.key});