diff --git a/packages/js/email-editor/src/components/sidebar/template-info.tsx b/packages/js/email-editor/src/components/sidebar/template-info.tsx index f5bf4be879..ded8d758bd 100644 --- a/packages/js/email-editor/src/components/sidebar/template-info.tsx +++ b/packages/js/email-editor/src/components/sidebar/template-info.tsx @@ -9,6 +9,8 @@ export function TemplateInfo() { ( select ) => select( storeName ).getCurrentTemplate(), [] ); + // @ts-expect-error Todo template type is not defined + const description = template?.description || ''; return ( @@ -22,8 +24,13 @@ export function TemplateInfo() { { /* @ts-expect-error Todo template type is not defined */ } { template?.title || __( 'Template', 'mailpoet' ) } - { /* @ts-expect-error Todo template type is not defined */ } - { template?.description || '' } + { description &&

{ description || '' }

} +

+ { __( + 'Edit this template to be used across multiple emails.', + 'mailpoet' + ) } +