Save newsletter_email_id in subscription instead of the whole entity

This commit is contained in:
Hongbo Wu
2023-01-12 22:16:00 +08:00
parent c647aabeaa
commit c4a5cbe4e2

View File

@ -203,7 +203,7 @@ export const createTestSubscription = async (
user,
name,
status: SubscriptionStatus.Active,
newsletterEmail,
newsletterEmail: { id: newsletterEmail.id },
})
}