Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "Support kontaktieren" button on our website #1751

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/lib/home/src/support.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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}'),
),
],
),
Expand Down
2 changes: 0 additions & 2 deletions website/lib/support_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ import 'package:url_launcher/url_launcher.dart';

import 'widgets/section.dart';

const phoneNumber = '+49 1516 7754541';
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also removing the phone number since it's not used on the page


class SupportPage extends StatelessWidget {
const SupportPage({super.key});

Expand Down
Loading