From ebc18f8a0e7bc7b81ebe4a4d77273d417a27f5c7 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Mon, 12 Jan 2026 22:56:10 +0100 Subject: [PATCH] all: fix formatting --- ui/src/utils/linkify.test.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/src/utils/linkify.test.ts b/ui/src/utils/linkify.test.ts index cfe9559da356f2fc550dee5364cef73e13dd6710..be50e11315a5ba7042da619a0592fe201cc843a2 100644 --- a/ui/src/utils/linkify.test.ts +++ b/ui/src/utils/linkify.test.ts @@ -238,7 +238,11 @@ const testCases: TestCase[] = [ input: "Download here: **https://example.com/file.vsix**", expected: [ { type: "text", content: "Download here: **" }, - { type: "link", content: "https://example.com/file.vsix", href: "https://example.com/file.vsix" }, + { + type: "link", + content: "https://example.com/file.vsix", + href: "https://example.com/file.vsix", + }, { type: "text", content: "**" }, ], },