@@ -8,7 +8,6 @@ import { TCAcademyLogoWhiteSvg, TCLogoSvg } from '~/libs/ui'
88import { LearnConfig } from '../../../../config'
99import { TCACertificateType , TCACertification } from '../../../data-providers'
1010import { CertificateBadgeIcon } from '../../dynamic-icons'
11- import { DougSigSvg } from '../../svgs'
1211
1312import { CertificateBackground } from './certificate-background'
1413import styles from './TCACertificate.module.scss'
@@ -17,7 +16,6 @@ interface TCACertificateProps {
1716 certification : TCACertification
1817 completionUuid ?: null | string
1918 completedDate ?: string
20- displaySignature ?: boolean
2119 elRef ?: MutableRefObject < HTMLElement | any >
2220 tcHandle ?: string
2321 userName ?: string
@@ -28,8 +26,6 @@ const TCACertificate: FC<TCACertificateProps> = (props: TCACertificateProps) =>
2826 // TODO: add cross track theme/type support
2927 const certificateType : TCACertificateType = props . certification . certificationCategory ?. track ?? 'DEV'
3028
31- const displaySignature : boolean = props . displaySignature ?? true
32-
3329 const completedDate : string = moment ( props . completedDate || new Date ( ) )
3430 . format ( 'MMM D, YYYY' )
3531
@@ -93,16 +89,6 @@ const TCACertificate: FC<TCACertificateProps> = (props: TCACertificateProps) =>
9389 < span className = 'ultra-small-medium' > { props . validateLink } </ span >
9490 </ div >
9591 </ div >
96- {
97- displaySignature && (
98- < div className = { styles . sigWrap } >
99- < DougSigSvg />
100- < div className = { styles . divider } />
101- < span > Doug Hanson</ span >
102- < span > CEO, Topcoder</ span >
103- </ div >
104- )
105- }
10692 </ div >
10793 ) }
10894 </ div >
0 commit comments