Skip to content

Commit

Permalink
Remove "-page" suffix for terms of service and privacy policy page (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsreichardt authored Apr 24, 2024
1 parent 5d6b7cc commit 86814a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion lib/legal/lib/src/privacy_policy/privacy_policy_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ export 'src/privacy_policy_src.dart'
export 'src/data/data.dart';

class PrivacyPolicyPage extends StatelessWidget {
static const tag = "privacy-policy-page";
// Be careful when changing the tag since it breaks the links to our privacy
// policy.
static const tag = "privacy-policy";

PrivacyPolicyPage({
super.key,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ import 'package:flutter/material.dart';
import 'package:legal/legal.dart';

class TermsOfServicePage extends StatelessWidget {
static const tag = "terms-of-service-page";
// Be careful when changing the tag since it breaks the links to our terms of
// serivce.
static const tag = "terms-of-service";

const TermsOfServicePage({super.key});

Expand Down

0 comments on commit 86814a4

Please sign in to comment.