diff --git a/services/web/frontend/js/features/project-list/components/new-project-button.tsx b/services/web/frontend/js/features/project-list/components/new-project-button.tsx index 0e937caa1b..d243153992 100644 --- a/services/web/frontend/js/features/project-list/components/new-project-button.tsx +++ b/services/web/frontend/js/features/project-list/components/new-project-button.tsx @@ -30,6 +30,7 @@ type NewProjectButtonProps = { id: string buttonText?: string className?: string + menuClassName?: string trackingKey?: string } @@ -37,6 +38,7 @@ function NewProjectButton({ id, buttonText, className, + menuClassName, trackingKey, }: NewProjectButtonProps) { const { t } = useTranslation() @@ -146,7 +148,7 @@ function NewProjectButton({ > {buttonText || t('new_project')} - + handleModalMenuClick(e, { diff --git a/services/web/frontend/js/features/project-list/components/welcome-message.tsx b/services/web/frontend/js/features/project-list/components/welcome-message.tsx index 0f7989f7dc..b59ceb782f 100644 --- a/services/web/frontend/js/features/project-list/components/welcome-message.tsx +++ b/services/web/frontend/js/features/project-list/components/welcome-message.tsx @@ -38,6 +38,7 @@ export default function WelcomeMessage() {