We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 121778a + 7983ce0 commit 7ad2edeCopy full SHA for 7ad2ede
1 file changed
src/components/UserProfile/TeamsAndProjects/AddProjectPopup.jsx
@@ -73,11 +73,13 @@ const AddProjectPopup = React.memo(props => {
73
74
const finishFetch = status => {
75
setIsOpenDropdown(false);
76
+
77
toast.success(
78
status === 200
79
? 'Project created successfully'
80
: 'Project created successfully, but it is not possible to retrieve the new project.',
81
);
82
83
setDropdownText(dropdownText);
84
};
85
@@ -100,7 +102,7 @@ const AddProjectPopup = React.memo(props => {
100
102
101
103
const newProject = {
104
projectName: searchText,
- category: dropdownText,
105
+ projectCategory: dropdownText,
106
isActive: true,
107
108
0 commit comments