Preparation for proper release
This commit is contained in:
@@ -17,11 +17,11 @@ const Education : FC<EducationArgs> = (props) => {
|
||||
const getCountryEmoji = () => {
|
||||
switch (props.city) {
|
||||
case "Warsaw":
|
||||
return "🇵🇱";
|
||||
return ", Poland";
|
||||
case "London":
|
||||
return "🏴";
|
||||
return ", England, UK";
|
||||
case "Edinburgh":
|
||||
return "🏴";
|
||||
return ", Scotland, UK";
|
||||
}
|
||||
};
|
||||
|
||||
@@ -43,7 +43,7 @@ const Education : FC<EducationArgs> = (props) => {
|
||||
}
|
||||
</div>
|
||||
<span className={styles.otherDetails}>
|
||||
<div className={styles.location}>{props.city} {getCountryEmoji()}</div>
|
||||
<div className={styles.location}>{props.city}{getCountryEmoji()}</div>
|
||||
<hr/>
|
||||
{props.endDate ? props.startDate + " - " + props.endDate : "Since " + props.startDate}
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user