Merge pull request #2114 from automatisch/AUT-929

feat: fix primary app color value and how it is displayed in the app
This commit is contained in:
Ömer Faruk Aydın
2024-10-09 11:02:03 +02:00
committed by GitHub
76 changed files with 94 additions and 80 deletions

View File

@@ -7,7 +7,7 @@ const getAppsMock = () => {
iconUrl: 'http://localhost:3000/apps/deepl/assets/favicon.svg',
key: 'deepl',
name: 'DeepL',
primaryColor: '0d2d45',
primaryColor: '#0d2d45',
supportsConnections: true,
},
{
@@ -17,7 +17,7 @@ const getAppsMock = () => {
iconUrl: 'http://localhost:3000/apps/github/assets/favicon.svg',
key: 'github',
name: 'GitHub',
primaryColor: '000000',
primaryColor: '#000000',
supportsConnections: true,
},
{
@@ -26,7 +26,7 @@ const getAppsMock = () => {
iconUrl: 'http://localhost:3000/apps/slack/assets/favicon.svg',
key: 'slack',
name: 'Slack',
primaryColor: '4a154b',
primaryColor: '#4a154b',
supportsConnections: true,
},
{
@@ -35,7 +35,7 @@ const getAppsMock = () => {
iconUrl: 'http://localhost:3000/apps/webhook/assets/favicon.svg',
key: 'webhook',
name: 'Webhook',
primaryColor: '0059F7',
primaryColor: '#0059F7',
supportsConnections: false,
},
];