Merge pull request #2710 from omnivore-app/fix/web-subscriptions-empty-message

Update the empty state message for subscriptions
This commit is contained in:
Jackson Harper 2023-08-31 12:04:25 +08:00 committed by GitHub
commit 53a3d879ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -201,10 +201,10 @@ describe('Subscriptions API', () => {
}
}
`
const user2 = await createTestUser('fakeUser2')
const user3 = await createTestUser('fakeUser3')
try {
await createTestSubscription(
user2,
user3,
'sub_other',
undefined,
SubscriptionStatus.Unsubscribed,
@ -222,7 +222,7 @@ describe('Subscriptions API', () => {
}))
)
} finally {
deleteTestUser(user2.id)
deleteTestUser(user3.id)
}
})

View file

@ -96,7 +96,7 @@ export default function SubscriptionsPage(): JSX.Element {
})
) : (
<EmptySettingsRow
text={isValidating ? '-' : 'No Email Subscriptions Found'}
text={isValidating ? '-' : 'No Subscriptions Found'}
/>
)}