chore: remove redundant console logs (#868)
This commit is contained in:
parent
5f20e65ca6
commit
fa5c994ddc
15 changed files with 18 additions and 64 deletions
|
|
@ -92,13 +92,8 @@ export const CycleDetailsSidebar: React.FC<Props> = ({
|
|||
|
||||
cyclesService
|
||||
.patchCycle(workspaceSlug as string, projectId as string, cycleId as string, data)
|
||||
.then((res) => {
|
||||
console.log(res);
|
||||
mutate(CYCLE_DETAILS(cycleId as string));
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log(e);
|
||||
});
|
||||
.then(() => mutate(CYCLE_DETAILS(cycleId as string)))
|
||||
.catch((e) => console.log(e));
|
||||
};
|
||||
|
||||
const handleCopyText = () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue