Files
twenty_crm/packages/twenty-front/src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
Guillim 4bb8e3a50e updating SettingsAccountsListEmptyStateCard (#9868)
changing from "Connect a Google account" to  "Choose your provider"

updating all languages using 
`npx nx run twenty-front:lingui:extract`
2025-01-27 15:20:48 +01:00

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>
);
};