Skip to content

Commit 2588c89

Browse files
authored
fix(dashboard): Fix social media icon links in email editor (#8012)
1 parent 73f51b6 commit 2588c89

File tree

1 file changed

+7
-7
lines changed
  • apps/dashboard/src/components/workflow-editor/steps/email/blocks

1 file changed

+7
-7
lines changed

apps/dashboard/src/components/workflow-editor/steps/email/blocks/footers.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ export const createFooterLogoTextAndSocials: (props: { track: ReturnType<typeof
245245
attrs: {
246246
height: 20,
247247
width: 20,
248-
src: '/images/email-editor/linkedin.png',
248+
src: 'https://prod-novu-app-bucket.s3.us-east-1.amazonaws.com/assets/email-editor/linkedin.png',
249249
isSrcVariable: false,
250250
alt: null,
251251
title: null,
@@ -259,7 +259,7 @@ export const createFooterLogoTextAndSocials: (props: { track: ReturnType<typeof
259259
attrs: {
260260
height: 20,
261261
width: 20,
262-
src: '/images/email-editor/youtube.png',
262+
src: 'https://prod-novu-app-bucket.s3.us-east-1.amazonaws.com/assets/email-editor/youtube.png',
263263
isSrcVariable: false,
264264
alt: null,
265265
title: null,
@@ -273,7 +273,7 @@ export const createFooterLogoTextAndSocials: (props: { track: ReturnType<typeof
273273
attrs: {
274274
height: 20,
275275
width: 20,
276-
src: '/images/email-editor/twitter.png',
276+
src: 'https://prod-novu-app-bucket.s3.us-east-1.amazonaws.com/assets/email-editor/twitter.png',
277277
isSrcVariable: false,
278278
alt: null,
279279
title: null,
@@ -332,7 +332,7 @@ export const createFooterLogoWithSimpleText: (props: { track: ReturnType<typeof
332332
attrs: {
333333
height: 48,
334334
width: 48,
335-
src: '/images/email-editor/logo.png',
335+
src: 'https://prod-novu-app-bucket.s3.us-east-1.amazonaws.com/assets/email-editor/logo.png',
336336
isSrcVariable: false,
337337
alt: 'Company Logo',
338338
title: null,
@@ -422,7 +422,7 @@ export const createFooterLogoWithSimpleText: (props: { track: ReturnType<typeof
422422
attrs: {
423423
height: 20,
424424
width: 20,
425-
src: '/images/email-editor/linkedin.png',
425+
src: 'https://prod-novu-app-bucket.s3.us-east-1.amazonaws.com/assets/email-editor/linkedin.png',
426426
isSrcVariable: false,
427427
alt: 'LinkedIn',
428428
title: null,
@@ -436,7 +436,7 @@ export const createFooterLogoWithSimpleText: (props: { track: ReturnType<typeof
436436
attrs: {
437437
height: 20,
438438
width: 20,
439-
src: '/images/email-editor/twitter.png',
439+
src: 'https://prod-novu-app-bucket.s3.us-east-1.amazonaws.com/assets/email-editor/twitter.png',
440440
isSrcVariable: false,
441441
alt: 'Twitter',
442442
title: null,
@@ -450,7 +450,7 @@ export const createFooterLogoWithSimpleText: (props: { track: ReturnType<typeof
450450
attrs: {
451451
height: 20,
452452
width: 20,
453-
src: '/images/email-editor/youtube.png',
453+
src: 'https://prod-novu-app-bucket.s3.us-east-1.amazonaws.com/assets/email-editor/youtube.png',
454454
isSrcVariable: false,
455455
alt: 'YouTube',
456456
title: null,

0 commit comments

Comments
 (0)