diff --git a/lib/ui/settings/support_section_widget.dart b/lib/ui/settings/support_section_widget.dart index 5b364f009..9ebfc3842 100644 --- a/lib/ui/settings/support_section_widget.dart +++ b/lib/ui/settings/support_section_widget.dart @@ -38,30 +38,6 @@ class SupportSectionWidget extends StatelessWidget { child: SettingsTextItem(text: "email", icon: Icons.navigate_next), ), Divider(height: 4), - GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: () async { - Navigator.of(context).push( - MaterialPageRoute( - builder: (BuildContext context) { - return CrispChatPage(); - }, - ), - ); - }, - child: SettingsTextItem(text: "chat", icon: Icons.navigate_next), - ), - Divider(height: 4), - GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: () async { - await sendLogs(context, "bug@ente.io"); - showToast("thanks for reporting a bug!"); - }, - child: SettingsTextItem( - text: "report bug 🐞", icon: Icons.navigate_next), - ), - Divider(height: 4), GestureDetector( behavior: HitTestBehavior.translucent, onTap: () { @@ -89,6 +65,16 @@ class SupportSectionWidget extends StatelessWidget { }, child: SettingsTextItem(text: "community", icon: Icons.navigate_next), ), + Divider(height: 4), + GestureDetector( + behavior: HitTestBehavior.translucent, + onTap: () async { + await sendLogs(context, "bug@ente.io"); + showToast("thanks for reporting a bug!"); + }, + child: SettingsTextItem( + text: "report bug 🐞", icon: Icons.navigate_next), + ), ], ); }