Skip to content

Commit

Permalink
whitelabel
Browse files Browse the repository at this point in the history
  • Loading branch information
JarWarren committed Nov 25, 2024
1 parent eb2874f commit dcfa652
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/twenty-e2e-testing/tests/login.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ setup('Login test', async ({ page }) => {
await page.getByRole('button', { name: 'Continue', exact: true }).click();
await page.getByPlaceholder('Password').fill(process.env.DEFAULT_PASSWORD);
await page.getByRole('button', { name: 'Sign in' }).click();
await expect(page.getByText('Welcome to Twenty')).not.toBeVisible();
await expect(page.getByText('Welcome to Funnelmink')).not.toBeVisible();

// End of authentication steps.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const SendInviteLinkEmail = ({
const workspaceLogo = getImageAbsoluteURI(workspace.logo, serverUrl);
return (
<BaseEmail width={333}>
<Title value="Join your team on Twenty" />
<Title value="Join your team on Funnelmink" />
<MainText>
{capitalize(sender.firstName)} (
<Link href={sender.email} value={sender.email} />) has invited you to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ export const SETTINGS_COMPOSITE_FIELD_TYPE_CONFIGS = {
label: 'Links',
Icon: IllustrationIconLink,
exampleValue: {
primaryLinkUrl: 'twenty.com',
primaryLinkUrl: 'funnelmink.com',
primaryLinkLabel: '',
secondaryLinks: [{ url: 'twenty.com', label: 'Twenty' }],
secondaryLinks: [{ url: 'funnelmink.com', label: 'Funnelmink' }],
},
category: 'Basic',
subFields: ['primaryLinkUrl', 'primaryLinkLabel', 'secondaryLinks'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const meta: Meta<PageDecoratorArgs> = {
findWorkspaceFromInviteHash: {
__typename: 'Workspace',
id: '20202020-91f0-46d0-acab-cb5afef3cc3b',
displayName: 'Twenty dev',
displayName: 'Funnelmink dev',
logo: null,
allowImpersonation: false,
},
Expand Down Expand Up @@ -73,7 +73,7 @@ export const Default: Story = {
play: async ({ canvasElement }) => {
const canvas = within(canvasElement);

await canvas.findByText('Join Twenty dev team', undefined, {
await canvas.findByText('Join Funnelmink dev team', undefined, {
timeout: 5000,
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export const ChooseYourPlan = () => {
setIsSubmitting(false);
if (!data?.checkoutSession.url) {
enqueueSnackBar(
'Checkout session error. Please retry or contact Twenty team',
'Checkout session error. Please retry or contact Funnelmink team',
{
variant: SnackBarVariant.Error,
},
Expand Down
2 changes: 1 addition & 1 deletion packages/twenty-front/src/pages/onboarding/SyncEmails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const SyncEmails = () => {
<>
<Title noMarginTop>Emails and Calendar</Title>
<SubTitle>
Sync your Emails and Calendar with Twenty. Choose your privacy settings.
Sync your Emails and Calendar with Funnelmink. Choose your privacy settings.
</SubTitle>
<StyledSyncEmailsContainer>
<OnboardingSyncEmailsSettingsCard
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ export class EnvironmentVariables {

EMAIL_SYSTEM_ADDRESS = '[email protected]';

EMAIL_FROM_NAME = 'Felix from Twenty';
EMAIL_FROM_NAME = 'Ron from Funnelmink';

EMAIL_DRIVER: EmailDriver = EmailDriver.Logger;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export class WorkspaceInvitationService {
'EMAIL_FROM_NAME',
)} <${this.environmentService.get('EMAIL_FROM_ADDRESS')}>`,
to: invitation.value.email,
subject: 'Join your team on Twenty',
subject: 'Join your team on Funnelmink',
text,
html,
});
Expand Down

0 comments on commit dcfa652

Please sign in to comment.