changing from "Connect a Google account" to "Choose your provider" updating all languages using `npx nx run twenty-front:lingui:extract`
17 lines
502 B
TypeScript
17 lines
502 B
TypeScript
import { H2Title, Section } from 'twenty-ui';
|
|
|
|
import { SettingsAccountsListEmptyStateCard } from '@/settings/accounts/components/SettingsAccountsListEmptyStateCard';
|
|
import { t } from '@lingui/core/macro';
|
|
|
|
export const SettingsNewAccountSection = () => {
|
|
return (
|
|
<Section>
|
|
<H2Title
|
|
title={t`New account`}
|
|
description={t`Connect a new account to your workspace`}
|
|
/>
|
|
<SettingsAccountsListEmptyStateCard label={t`Choose your provider`} />
|
|
</Section>
|
|
);
|
|
};
|