Corrected typo

This commit is contained in:
2025-08-05 14:04:13 +02:00
parent bd0c2e7944
commit 344aa970cd
2 changed files with 7 additions and 7 deletions

View File

@@ -33,10 +33,10 @@ class LicenseView extends StatelessWidget {
Navigator.push(
context,
CupertinoPageRoute(
builder: (_) => LicenceDetailView(
builder: (_) => LicenseDetailView(
title: ossLicenses[index].name[0].toUpperCase() +
ossLicenses[index].name.substring(1),
licence: ossLicenses[index].license!,
license: ossLicenses[index].license!,
),
),
);