ui improvements and lint fixes

This commit is contained in:
Fabian Freund
2026-04-19 18:44:33 +02:00
parent 66cb10aa47
commit 7af0f1d4e3
5 changed files with 39 additions and 48 deletions
@@ -589,9 +589,9 @@ class _DescriptionCard extends ConsumerWidget {
: MarkdownBody(
data: markdown,
selectable: true,
onTapLink: (text, href, title) {
onTapLink: (text, href, title) async {
if (href != null && href.isNotEmpty) {
launchUrl(Uri.parse(href));
await launchUrl(Uri.parse(href));
}
},
),