Fixed show snackbar error

This commit is contained in:
Juan Gilsanz Polo 2023-06-06 00:14:48 +02:00
parent 9a1ffa43f4
commit 89aa022f2d
6 changed files with 13 additions and 20 deletions

View file

@ -55,7 +55,6 @@ class AddedClientTile extends StatelessWidget {
icon: Icons.copy_rounded,
onTap: () {
copyToClipboard(
context: context,
value: client.ids.toString().replaceAll(RegExp(r'^\[|\]$'), ''),
successMessage: AppLocalizations.of(context)!.copiedClipboard,
);
@ -189,7 +188,6 @@ class AddedClientTile extends StatelessWidget {
icon: Icons.copy_rounded,
onTap: () {
copyToClipboard(
context: context,
value: client.ids.toString().replaceAll(RegExp(r'^\[|\]$'), ''),
successMessage: AppLocalizations.of(context)!.copiedClipboard,
);