fix(patch-item): remove redundant patch version completely (#1059)

https://github.com/ReVanced/revanced-patches/pull/2709
This commit is contained in:
aAbed 2023-07-29 15:06:30 +05:45 committed by GitHub
parent c27ca08d3a
commit 096b315701
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 14 deletions

View file

@ -59,7 +59,7 @@ class PatchSelectorCard extends StatelessWidget {
String _getPatchesSelection() {
String text = '';
for (final Patch p in locator<PatcherViewModel>().selectedPatches) {
text += '\u2022 ${p.getSimpleName()} (v${p.version})\n';
text += '\u2022 ${p.getSimpleName()}\n';
}
return text.substring(0, text.length - 1);
}