Public Profile
@@ -200,6 +206,7 @@ export function UpdatePublicProfileForm() {
updateProfileVisibility('public')}
@@ -207,6 +214,7 @@ export function UpdatePublicProfileForm() {
updateProfileVisibility('private')}
@@ -262,7 +270,9 @@ export function UpdatePublicProfileForm() {
-
Show my Learning Activity
+
+ Pick the roadmaps to show your progress
+
{
@@ -286,7 +296,9 @@ export function UpdatePublicProfileForm() {
/>
-
Only Following Roadmaps
+
+ Only show the selected roadmaps
+
{publicRoadmaps.length > 0 ? (
{publicRoadmaps.map((r) => (
@@ -326,7 +338,9 @@ export function UpdatePublicProfileForm() {
-
Show my Custom Roadmaps
+
+ Pick the custom roadmaps to show on your profile
+
-
Only Following Roadmaps
+
+ Only show the following selected custom roadmaps
+
{publicCustomRoadmaps.length > 0 ? (
{publicCustomRoadmaps.map((r) => (
@@ -377,11 +393,18 @@ export function UpdatePublicProfileForm() {
))}
) : (
-
- You have not created any custom roadmaps yet.{' '}
-
- Create a custom roadmap
-
+
+ You do not have any custom roadmaps.{' '}
+
+ .
)}
@@ -471,7 +494,7 @@ export function UpdatePublicProfileForm() {
-
+
-
- Enable this if you are open to job opportunities, we will show a
- badge on your profile to indicate that you are available for hire.
-
+ {isAvailableForHire && (
+
+ Make sure to keep your progress updated for
+ potential employers.
+
+ )}
)}
- {customRoadmapVisibility !== 'none' && (
+ {customRoadmapVisibility !== 'none' && customRoadmaps?.length > 0 && (
<>
My Roadmaps
- {customRoadmaps?.length === 0 ? (
-
- No roadmaps added yet.
-
- ) : (
-
- {customRoadmaps.map((roadmap, counter) => (
- -
-
-
- ))}
-
- )}
+
+ {customRoadmaps.map((roadmap, counter) => (
+ -
+
+
+ ))}
+
>
)}