From 829d207cead6a8002d8362f5345192e74ef15bd0 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 12 May 2023 21:46:36 -0500 Subject: [PATCH] Fix type --- app/soapbox/jest/factory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/jest/factory.ts b/app/soapbox/jest/factory.ts index 403904209..019b0b17f 100644 --- a/app/soapbox/jest/factory.ts +++ b/app/soapbox/jest/factory.ts @@ -79,7 +79,7 @@ function buildRelationship(props: Partial = {}): Relationship { }, props)); } -function buildStatus(props: Partial = {}): Status { +function buildStatus(props: Partial = {}) { return normalizeStatus(Object.assign({ id: uuidv4(), }, props));