import { H2Title } from 'twenty-ui/display'; import { Section } from 'twenty-ui/layout'; import { SettingsPath } from 'twenty-shared/types'; import { LinkChip } from 'twenty-ui/components'; import { getSettingsPath } from 'twenty-shared/utils'; import { useParams } from 'react-router-dom'; import { t } from '@lingui/core/macro'; import { Trans } from '@lingui/react/macro'; export const SettingsServerlessFunctionTabEnvironmentVariablesSection = () => { const { applicationId = '' } = useParams<{ applicationId: string }>(); return (
Environment variables are defined at application level for all functions. Please check{' '} .
); };