You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
consthandleClone=async()=>{// creates a copy of the project
48
-
constupdatedProject: Project=JSON.parse(JSON.stringify(proj));// creates a deep copy
49
-
updatedProject.forked=`Forked from ${updatedProject.username}`;
50
-
awaitaxios.post('/cloneProject',{
51
-
updatedProject
52
-
});
51
+
constdocId=proj._id;
52
+
constresponse=awaitaxios.get(`/cloneProject/${docId}`,{params: {username: window.localStorage.getItem('username')}});//passing in username as a query param is query params
0 commit comments