From 3389fb5a34b6b59a4638fecece7be363c31029e7 Mon Sep 17 00:00:00 2001 From: Valere Date: Thu, 26 Mar 2026 19:39:02 +0100 Subject: [PATCH] fixup linter --- src/Avatar.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Avatar.test.tsx b/src/Avatar.test.tsx index 1816904c..1e32de0e 100644 --- a/src/Avatar.test.tsx +++ b/src/Avatar.test.tsx @@ -199,7 +199,7 @@ test("Supports download files as base64", async () => { "XzmnQI9P8QnwsO9vtqZlgIoU4g+f2/G8Q3/nVMX7dujniwEAAP//KmiQs7P8MeIAAAAASUVORK5C" + "YII="; const mockWidgetAPI = { - downloadFile: vi.fn().mockImplementation((contentUri) => { + downloadFile: vi.fn().mockImplementation(async (contentUri) => { if (contentUri !== expectedMXCUrl) { return Promise.reject(new Error("Unexpected content URI")); }