diff --git a/src/components/ui/NavBarWithSearch/index.tsx b/src/components/ui/NavBarWithSearch/index.tsx
index cfa0f48..24c1c86 100644
--- a/src/components/ui/NavBarWithSearch/index.tsx
+++ b/src/components/ui/NavBarWithSearch/index.tsx
@@ -117,7 +117,7 @@ type NavBarWithSearchProps = {
export function NavbarSearch({ onNewTask, openedNav, setOpenedNav }: NavBarWithSearchProps) {
const { classes } = useStyles();
- const [section, setSection] = useState<"teams" | "projects">("teams");
+ const [section, setSection] = useState<"teams" | "projects">("projects");
const [newProjectOpened, setNewProjectOpened] = useState(false);
const [newTeamOpened, setNewTeamOpened] = useState(false);
@@ -182,24 +182,24 @@ export function NavbarSearch({ onNewTask, openedNav, setOpenedNav }: NavBarWithS
{
label: (
-
+
- Teams
+ Projects
),
- value: "teams",
+ value: "projects",
},
{
label: (
-
+
- Projects
+ Teams
),
- value: "projects",
+ value: "teams",
},
]}
/>
diff --git a/src/components/ui/Task/status.tsx b/src/components/ui/Task/status.tsx
index 7a4994c..7429edf 100644
--- a/src/components/ui/Task/status.tsx
+++ b/src/components/ui/Task/status.tsx
@@ -287,3 +287,6 @@ export const StatusSelectorByTask = ({ task, type, iconVariant }: StatusSelector
);
};
+
+
+
diff --git a/src/modules/settings/Members/NewMemberForm.tsx b/src/modules/settings/Members/NewMemberForm.tsx
index 67b4146..65267d3 100644
--- a/src/modules/settings/Members/NewMemberForm.tsx
+++ b/src/modules/settings/Members/NewMemberForm.tsx
@@ -37,7 +37,7 @@ export const NewMemberModal = ({ opened, close }: { opened: boolean; close: () =
return (
-