mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-26 16:00:56 -04:00
chore(client): remove hours from C# cert (#51606)
This commit is contained in:
@@ -5,6 +5,7 @@ function FreeCodeCampLogo(
|
||||
): JSX.Element {
|
||||
return (
|
||||
<svg
|
||||
data-cy='freeCodeCamp-logo'
|
||||
height={24}
|
||||
version='1.1'
|
||||
viewBox='0 0 210 24'
|
||||
|
||||
@@ -5,6 +5,7 @@ function MicrosoftLogo(
|
||||
): JSX.Element {
|
||||
return (
|
||||
<svg
|
||||
data-cy='microsoft-logo'
|
||||
version='1.1'
|
||||
viewBox='0 0 610 130'
|
||||
xmlns='http://www.w3.org/2000/svg'
|
||||
|
||||
@@ -341,7 +341,14 @@ const ShowCertification = (props: ShowCertificationProps): JSX.Element => {
|
||||
</header>
|
||||
<main className='information'>
|
||||
<div className='information-container'>
|
||||
<Trans i18nKey='certification.fulltext' title={certTitle}>
|
||||
<Trans
|
||||
i18nKey={
|
||||
isMicrosoftCert
|
||||
? 'certification.fulltextNoHours'
|
||||
: 'certification.fulltext'
|
||||
}
|
||||
title={certTitle}
|
||||
>
|
||||
<h3>placeholder</h3>
|
||||
<h1>
|
||||
<strong>{{ user: displayName }}</strong>
|
||||
@@ -378,6 +385,7 @@ const ShowCertification = (props: ShowCertificationProps): JSX.Element => {
|
||||
<>
|
||||
<div>
|
||||
<Image
|
||||
data-cy='quincy-signature'
|
||||
alt="Quincy Larson's Signature"
|
||||
src={
|
||||
'https://cdn.freecodecamp.org' +
|
||||
@@ -393,6 +401,7 @@ const ShowCertification = (props: ShowCertificationProps): JSX.Element => {
|
||||
</div>
|
||||
<div className='microsoft-signature'>
|
||||
<Image
|
||||
data-cy='microsoft-signature'
|
||||
alt="Julia Liusons's Signature"
|
||||
src={
|
||||
'https://cdn.freecodecamp.org' +
|
||||
@@ -411,6 +420,7 @@ const ShowCertification = (props: ShowCertificationProps): JSX.Element => {
|
||||
) : (
|
||||
<div>
|
||||
<Image
|
||||
data-cy='quincy-signature'
|
||||
alt="Quincy Larson's Signature"
|
||||
src={
|
||||
'https://cdn.freecodecamp.org' +
|
||||
|
||||
@@ -175,7 +175,7 @@ const ShowProjectLinks = (props: ShowProjectLinksProps): JSX.Element => {
|
||||
if (!isCertName(certName)) return <div> Unknown Certification</div>;
|
||||
|
||||
return (
|
||||
<div>
|
||||
<div data-cy='solution-widget'>
|
||||
{t(
|
||||
certName === 'Legacy Full Stack'
|
||||
? 'certification.project.heading-legacy-full-stack'
|
||||
|
||||
Reference in New Issue
Block a user