removed unnecessary comments.

This commit is contained in:
Faris Armoush
2025-04-15 15:03:27 +03:00
parent 117f6190dd
commit 7d0e50fb1d

View File

@ -51,14 +51,13 @@ class TagChipDisplay extends StatelessWidget {
borderRadius: BorderRadius.circular(15), borderRadius: BorderRadius.circular(15),
border: Border.all( border: Border.all(
color: ColorsManager.textFieldGreyColor, color: ColorsManager.textFieldGreyColor,
width: 3.0, // Border width width: 3.0,
), ),
), ),
child: Wrap( child: Wrap(
spacing: 8.0, spacing: 8.0,
runSpacing: 8.0, runSpacing: 8.0,
children: [ children: [
// Combine tags from spaceModel and subspaces
...TagHelper.groupTags([ ...TagHelper.groupTags([
...?spaceModel?.tags, ...?spaceModel?.tags,
...?spaceModel?.subspaceModels?.expand((subspace) => subspace.tags ?? []) ...?spaceModel?.subspaceModels?.expand((subspace) => subspace.tags ?? [])
@ -73,7 +72,7 @@ class TagChipDisplay extends StatelessWidget {
), ),
), ),
label: Text( label: Text(
'x${entry.value}', // Show count 'x${entry.value}',
style: Theme.of(context) style: Theme.of(context)
.textTheme .textTheme
.bodySmall! .bodySmall!