diff --git a/website/lib/home/src/support.dart b/website/lib/home/src/support.dart index 6a900d96d..ffbb7ee05 100644 --- a/website/lib/home/src/support.dart +++ b/website/lib/home/src/support.dart @@ -41,7 +41,7 @@ class Support extends StatelessWidget { const SizedBox(height: 20), SectionActionButton( text: "Support kontaktieren", - onTap: () => context.go('/$SupportPage.tag'), + onTap: () => context.go('/${SupportPage.tag}'), ), ], ), diff --git a/website/lib/support_page.dart b/website/lib/support_page.dart index 22a388ec4..dd5c682fc 100644 --- a/website/lib/support_page.dart +++ b/website/lib/support_page.dart @@ -15,8 +15,6 @@ import 'package:url_launcher/url_launcher.dart'; import 'widgets/section.dart'; -const phoneNumber = '+49 1516 7754541'; - class SupportPage extends StatelessWidget { const SupportPage({super.key});