fix: removed duplicate insertion of localization widget (was both in main and in app widget)

This commit is contained in:
Aliaksei Tratseuski 2024-05-01 03:19:18 +04:00
parent 844039e0f2
commit c2a77b9fc5

View file

@ -42,11 +42,9 @@ void main() async {
Bloc.observer = SimpleBlocObserver(); Bloc.observer = SimpleBlocObserver();
runApp( runApp(
Localization( SelfprivacyApp(
child: SelfprivacyApp( lightThemeData: lightThemeData,
lightThemeData: lightThemeData, darkThemeData: darkThemeData,
darkThemeData: darkThemeData,
),
), ),
); );
} }