frontend meta update
This commit is contained in:
@ -327,27 +327,27 @@
|
||||
"sizes": "256x256"
|
||||
},
|
||||
{
|
||||
"src": "images/icons/android/android-launchericon-512-512.png",
|
||||
"src": "images/icons/android/512B.png",
|
||||
"sizes": "512x512"
|
||||
},
|
||||
{
|
||||
"src": "images/icons/android/android-launchericon-192-192.png",
|
||||
"src": "images/icons/android/192B.png",
|
||||
"sizes": "192x192"
|
||||
},
|
||||
{
|
||||
"src": "images/icons/android/android-launchericon-144-144.png",
|
||||
"src": "images/icons/android/144B.png",
|
||||
"sizes": "144x144"
|
||||
},
|
||||
{
|
||||
"src": "images/icons/android/android-launchericon-96-96.png",
|
||||
"src": "images/icons/android/96B.png",
|
||||
"sizes": "96x96"
|
||||
},
|
||||
{
|
||||
"src": "images/icons/android/android-launchericon-72-72.png",
|
||||
"src": "images/icons/android/72B.png",
|
||||
"sizes": "72x72"
|
||||
},
|
||||
{
|
||||
"src": "images/icons/android/android-launchericon-48-48.png",
|
||||
"src": "images/icons/android/48B.png",
|
||||
"sizes": "48x48"
|
||||
},
|
||||
{
|
||||
|
||||
@ -58,6 +58,6 @@ describe('getTimelineActivityAuthorFullName', () => {
|
||||
currentWorkspaceMember as CurrentWorkspaceMember,
|
||||
);
|
||||
|
||||
expect(result).toBe('Twenty');
|
||||
expect(result).toBe('MessageKnot');
|
||||
});
|
||||
});
|
||||
|
||||
@ -11,5 +11,5 @@ export const getTimelineActivityAuthorFullName = (
|
||||
? 'You'
|
||||
: `${event.workspaceMember?.name.firstName} ${event.workspaceMember?.name.lastName}`;
|
||||
}
|
||||
return 'Twenty';
|
||||
return 'MessageKnot';
|
||||
};
|
||||
|
||||
@ -187,7 +187,7 @@ describe('useCombinedFindManyRecords', () => {
|
||||
node: {
|
||||
__typename: 'Company',
|
||||
id: '1',
|
||||
name: 'Twenty',
|
||||
name: 'MessageKnot',
|
||||
},
|
||||
cursor: 'cursor1',
|
||||
},
|
||||
@ -240,7 +240,7 @@ describe('useCombinedFindManyRecords', () => {
|
||||
{
|
||||
__typename: 'Company',
|
||||
id: '1',
|
||||
name: 'Twenty',
|
||||
name: 'MessageKnot',
|
||||
},
|
||||
],
|
||||
},
|
||||
@ -470,7 +470,7 @@ describe('useCombinedFindManyRecords', () => {
|
||||
node: {
|
||||
__typename: 'Company',
|
||||
id: '1',
|
||||
name: 'Twenty',
|
||||
name: 'MessageKnot',
|
||||
},
|
||||
cursor: 'cursor1',
|
||||
},
|
||||
@ -536,7 +536,7 @@ describe('useCombinedFindManyRecords', () => {
|
||||
{
|
||||
__typename: 'Company',
|
||||
id: '1',
|
||||
name: 'Twenty',
|
||||
name: 'MessageKnot',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@ -5,6 +5,7 @@ import { Trans, useLingui } from '@lingui/react/macro';
|
||||
import { RootStackingContextZIndices } from '@/ui/layout/constants/RootStackingContextZIndices';
|
||||
import { PageTitle } from '@/ui/utilities/page-title/components/PageTitle';
|
||||
import styled from '@emotion/styled';
|
||||
import { MainButton } from 'twenty-ui/input';
|
||||
import {
|
||||
AnimatedPlaceholder,
|
||||
AnimatedPlaceholderEmptyTextContainer,
|
||||
@ -12,7 +13,6 @@ import {
|
||||
AnimatedPlaceholderErrorSubTitle,
|
||||
AnimatedPlaceholderErrorTitle,
|
||||
} from 'twenty-ui/layout';
|
||||
import { MainButton } from 'twenty-ui/input';
|
||||
import { UndecoratedLink } from 'twenty-ui/navigation';
|
||||
|
||||
const StyledBackDrop = styled.div`
|
||||
@ -39,7 +39,7 @@ export const NotFound = () => {
|
||||
|
||||
return (
|
||||
<>
|
||||
<PageTitle title={t`Page Not Found` + ' | Twenty'} />
|
||||
<PageTitle title={t`Page Not Found` + ' | MessageKnot'} />
|
||||
<StyledBackDrop>
|
||||
<AnimatedPlaceholderErrorContainer>
|
||||
<AnimatedPlaceholder type="error404" />
|
||||
|
||||
@ -42,7 +42,7 @@ describe('title-utils', () => {
|
||||
expect(getPageTitleFromPath('/settings/general')).toBe(
|
||||
SettingsPageTitles.General,
|
||||
);
|
||||
expect(getPageTitleFromPath('/')).toBe('Twenty');
|
||||
expect(getPageTitleFromPath('/random')).toBe('Twenty');
|
||||
expect(getPageTitleFromPath('/')).toBe('MessageKnot');
|
||||
expect(getPageTitleFromPath('/random')).toBe('MessageKnot');
|
||||
});
|
||||
});
|
||||
|
||||
@ -12,6 +12,7 @@ export enum SettingsPageTitles {
|
||||
Apis = 'API Keys - Settings',
|
||||
Webhooks = 'Webhooks - Settings',
|
||||
Integration = 'Integrations - Settings',
|
||||
Roles = 'Roles - Settings',
|
||||
ServerlessFunctions = 'Functions - Settings',
|
||||
General = 'General - Settings',
|
||||
Default = 'Settings',
|
||||
@ -73,6 +74,6 @@ export const getPageTitleFromPath = (pathname: string): string => {
|
||||
case SettingsPathPrefixes.General:
|
||||
return SettingsPageTitles.General;
|
||||
default:
|
||||
return 'Twenty';
|
||||
return 'MessageKnot';
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user