diff --git a/app/soapbox/jest/factory.ts b/app/soapbox/jest/factory.ts index 019b0b17f..9bc4217f6 100644 --- a/app/soapbox/jest/factory.ts +++ b/app/soapbox/jest/factory.ts @@ -40,6 +40,9 @@ function buildCard(props: Partial = {}): Card { function buildGroup(props: Partial = {}): Group { return groupSchema.parse(Object.assign({ id: uuidv4(), + owner: { + id: uuidv4(), + }, }, props)); }