mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 08:13:49 +10:00
fix(client): remove hard-coded "keywords:" in certain templates
fix #650
This commit is contained in:
@ -91,13 +91,7 @@ const Section: React.FC<SectionProps> = ({
|
||||
</DataDisplay>
|
||||
)}
|
||||
|
||||
{keywords && (
|
||||
<div className="leading-normal">
|
||||
<span className="font-semibold">Keywords:</span>
|
||||
|
||||
{keywords.join(', ')}
|
||||
</div>
|
||||
)}
|
||||
{keywords && <div>{keywords.join(', ')}</div>}
|
||||
|
||||
{(phone || email) && (
|
||||
<div className="grid gap-1">
|
||||
|
||||
@ -92,13 +92,7 @@ const Section: React.FC<SectionProps> = ({
|
||||
</DataDisplay>
|
||||
)}
|
||||
|
||||
{keywords && (
|
||||
<div className="leading-normal">
|
||||
<span className="font-semibold">Keywords:</span>
|
||||
|
||||
{keywords.join(', ')}
|
||||
</div>
|
||||
)}
|
||||
{keywords && <div>{keywords.join(', ')}</div>}
|
||||
|
||||
{(phone || email) && (
|
||||
<div className="grid gap-1">
|
||||
|
||||
@ -92,13 +92,7 @@ const Section: React.FC<SectionProps> = ({
|
||||
</DataDisplay>
|
||||
)}
|
||||
|
||||
{keywords && (
|
||||
<div>
|
||||
<span className="font-semibold">Keywords:</span>
|
||||
|
||||
{keywords.join(', ')}
|
||||
</div>
|
||||
)}
|
||||
{keywords && <div>{keywords.join(', ')}</div>}
|
||||
|
||||
{(phone || email) && (
|
||||
<div className="grid gap-1">
|
||||
|
||||
@ -84,13 +84,7 @@ const Section: React.FC<SectionProps> = ({
|
||||
</DataDisplay>
|
||||
)}
|
||||
|
||||
{keywords && (
|
||||
<div className="leading-normal">
|
||||
<span className="font-semibold">Keywords:</span>
|
||||
|
||||
{keywords.join(', ')}
|
||||
</div>
|
||||
)}
|
||||
{keywords && <div>{keywords.join(', ')}</div>}
|
||||
|
||||
{(phone || email) && (
|
||||
<div className="grid gap-1">
|
||||
|
||||
Reference in New Issue
Block a user