Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
AlpanaMajhi committed Sep 5, 2023
1 parent 47ee5a3 commit ff91826
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/redux/actions/api/Glossary/SuggestAnEdit.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default class SuggestAnEditAPI extends API {
super("POST", timeout, false);
this.GlossaryObj = GlossaryObj;
//this.type = constants.GLOSSARY;
console.log(GlossaryObj,"GlossaryObj")
// console.log(GlossaryObj,"GlossaryObj")
this.endpoint = `${"https://glossary-api.ai4bharat.org/glossary-explorer"}${ENDPOINTS.Glossary}suggest`;
}

Expand Down
2 changes: 1 addition & 1 deletion src/redux/actions/api/Tasks/GetNextTask.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import constants from "../../../constants";
export default class GetNextTaskAPI extends API {
constructor(projectId,projectObj, mode="annotation", timeout = 2000) {

console.log(projectObj,"projectObjprojectObj")
// console.log(projectObj,"projectObjprojectObj")
super("POST", timeout, false);
let queryStr = "";
this.projectId = projectId;
Expand Down
2 changes: 1 addition & 1 deletion src/redux/actions/api/Tasks/GetTasksByProjectId.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import constants from "../../../constants";

export default class GetTasksByProjectIdAPI extends API {
constructor(projectId, pageNo, countPerPage, selectedFilters, taskType, pullvalue,pull, timeout = 2000) {
console.log(pullvalue,"pullvaluepullvalue")
// console.log(pullvalue,"pullvaluepullvalue")
super("GET", timeout, false);
const datavalue = []
this.type = constants.GET_TASK_LIST;
Expand Down
2 changes: 1 addition & 1 deletion src/ui/pages/component/Project/AllTaskTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ const AllTaskTable = (props) => {
return col;
});
setColumns(newCols);
console.log("columnss", newCols);
// console.log("columnss", newCols);
}, [selectedColumns]);


Expand Down
2 changes: 1 addition & 1 deletion src/ui/pages/component/common/Autocomplete.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import TextField from '@mui/material/TextField';
import Autocomplete from '@mui/material/Autocomplete';

export default function Autocompletes(props) {
console.log(props,"aaaaaaaaaaa")
// console.log(props,"aaaaaaaaaaa")
const [selectAutocomplete, setselectAutocomplete] = React.useState("");

useEffect(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/ui/pages/component/common/WorkspaceTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const WorkspaceTable = (props) => {

useEffect(() => {
getWorkspaceData();
console.log("fired now")
// console.log("fired now")
}, [currentPageNumber]);

// useEffect(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/ui/pages/container/CL-Transcription/TimeLine.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const Grab = memo(({ waveform , taskId,}) => {
const player = useSelector((state) => state.commonReducer.player);
const limit = useSelector((state) => state.commonReducer.limit);
const taskDetails = useSelector((state) => state.getTaskDetails.data);
console.log(taskDetails.id,"taskDetailstaskDetails")
// console.log(taskDetails.id,"taskDetailstaskDetails")

const [grabStartX, setGrabStartX] = useState(0);
const [grabStartTime, setGrabStartTime] = useState(0);
Expand Down

0 comments on commit ff91826

Please sign in to comment.