diff --git a/lib/features/settings/overview/settings_page.dart b/lib/features/settings/overview/settings_page.dart index 95c26a6b..7ff1f32f 100644 --- a/lib/features/settings/overview/settings_page.dart +++ b/lib/features/settings/overview/settings_page.dart @@ -147,10 +147,17 @@ class SettingsPage extends HookConsumerWidget { icon: Icons.layers_rounded, namedLocation: context.namedLocation('general'), ), + if (ref.watch(hasAnyProfileProvider).value ?? false) + SettingsSection( + title: t.pages.settings.chain.title, + icon: Icons.webhook_rounded, + subtitle: Text(t.pages.settings.chain.subtitle), + namedLocation: context.namedLocation('chainOptions'), + ), SettingsSection( title: t.pages.settings.routing.title, icon: Icons.route_rounded, - namedLocation: context.namedLocation('routeOptions'), + namedLocation: context.namedLocation('routingOptions'), ), SettingsSection( title: t.pages.settings.dns.title, @@ -167,13 +174,6 @@ class SettingsPage extends HookConsumerWidget { icon: Icons.content_cut_rounded, namedLocation: context.namedLocation('tlsTricks'), ), - if (ref.watch(hasAnyProfileProvider).value ?? false) - SettingsSection( - title: t.pages.settings.chain.title, - icon: Icons.webhook_rounded, - subtitle: Text(t.pages.settings.chain.subtitle), - namedLocation: context.namedLocation('chainOptions'), - ), if (PlatformUtils.isIOS) Material( child: ListTile(