diff --git a/.astro/settings.json b/.astro/settings.json index 4e5c9dc23..76d2425cb 100644 --- a/.astro/settings.json +++ b/.astro/settings.json @@ -3,6 +3,6 @@ "enabled": false }, "_variables": { - "lastUpdateCheck": 1722461514438 + "lastUpdateCheck": 1723855511353 } } \ No newline at end of file diff --git a/src/components/Projects/StartProjectModal.tsx b/src/components/Projects/StartProjectModal.tsx index f6b4392de..69212ee6e 100644 --- a/src/components/Projects/StartProjectModal.tsx +++ b/src/components/Projects/StartProjectModal.tsx @@ -96,7 +96,7 @@ export function StartProjectModal(props: StartProjectModalProps) { Project started{' '} {formattedStartedAt}

-

+

Start Building

@@ -104,49 +104,48 @@ export function StartProjectModal(props: StartProjectModalProps) {

-
- -

Create a repository on GitHub

-
-
- -

- Complete the task and push it to GitHub -

-
-
- -

- Add a readme file with instructions on how to run the project. Make - sure to include the{' '} - {' '} - in the readme file. -

-
-
- -

- Submit your repository URL to help others learn and get feedback - from the community. -

-
+ + )} + +

+

+ 4. Once done, submit your solution to help the others learn and get feedback + from the community. +

-

+

If you get stuck, you can always ask for help in the community{' '} { - // Show team dropdown "New" indicator to first 3 refreshes - const viewedTeamsCount = localStorage.getItem('viewedTeamsCount'); - const viewedTeamsCountNumber = parseInt(viewedTeamsCount || '0', 10); - const shouldShowTeamIndicator = viewedTeamsCountNumber < 5; - - setShouldShowTeamsIndicator(shouldShowTeamIndicator); - if (shouldShowTeamIndicator) { - localStorage.setItem( - 'viewedTeamsCount', - (viewedTeamsCountNumber + 1).toString(), - ); - } - }, []); - const teamList = useStore($teamList); const currentTeam = useStore($currentTeam); @@ -102,15 +84,6 @@ export function TeamDropdown() {

Choose Team - - {shouldShowTeamsIndicator && ( - - - - - - - )}