Updated language bundles with new keys.

This commit is contained in:
Mike Cao 2023-04-08 13:14:22 -07:00
parent 45d3fa4016
commit 2656de6682
54 changed files with 3513 additions and 2290 deletions

View file

@ -21,7 +21,9 @@ export default function RealtimeHome() {
return (
<Page loading={isLoading || data?.length > 0} error={error}>
<PageHeader title={formatMessage(labels.realtime)} />
{data?.length === 0 && <EmptyPlaceholder message={formatMessage(messages.noWebsites)} />}
{data?.length === 0 && (
<EmptyPlaceholder message={formatMessage(messages.noWebsitesConfigured)} />
)}
</Page>
);
}