diff --git a/apps/builder/src/features/templates/components/CreateNewTypebotButtons.tsx b/apps/builder/src/features/templates/components/CreateNewTypebotButtons.tsx index 8dd6e7900..4c3eabe8b 100644 --- a/apps/builder/src/features/templates/components/CreateNewTypebotButtons.tsx +++ b/apps/builder/src/features/templates/components/CreateNewTypebotButtons.tsx @@ -95,61 +95,72 @@ export const CreateNewTypebotButtons = () => { }; return ( - - {t("templates.buttons.heading")} - - - - - } - isLoading={isLoading} - onNewTypebot={handleCreateSubmit} - > - {t("templates.buttons.importFileButton.label")} - + + + {t("templates.buttons.heading")} + + + + + } + isLoading={isLoading} + onNewTypebot={handleCreateSubmit} + > + {t("templates.buttons.importFileButton.label")} + + + { }; return ( - - - Choose a workspace to duplicate {typebot?.name} in: - - ({ - value: workspace.id, - label: ( - - - {workspace.name} - - - ), - }))} - value={selectedWorkspaceId} - onSelect={updateSelectedWorkspaceId} - /> - + + Choose a workspace to duplicate {typebot?.name} in: + + ({ + value: workspace.id, + label: ( + + + {workspace.name} + + + ), + }))} + value={selectedWorkspaceId} + onSelect={updateSelectedWorkspaceId} + /> + + ); };