Skip to content

Commit dd2bd84

Browse files
committed
remove unwanted console log statements
1 parent 9a2810d commit dd2bd84

File tree

4 files changed

+0
-5
lines changed

4 files changed

+0
-5
lines changed

ui/src/Components/DashBoard/Compare/BranchCompareComponent/BranchCommitLogChanges.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ export default function BranchCommitLogChanges(props) {
1818

1919
if (compareBranch === baseBranch) {
2020
setLoading(false);
21-
console.log("Same");
2221
return;
2322
}
2423

ui/src/Components/DashBoard/Repository/RepoComponents/RepoDetails/RepoDetailBackdrop/AddBranchComponent.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ export default function AddBranchComponent(props) {
7474
className="addbranch--btn"
7575
onClick={(event) => {
7676
if (branchName) {
77-
console.log(branchName);
7877
addBranchClickHandler();
7978
} else {
8079
setBranchAddStatus("BRANCH_ADD_FAILED");

ui/src/Components/DashBoard/Repository/RepoComponents/RepoDetails/RepoDetailBackdrop/CodeFileViewComponent.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ export default function CodeFileViewComponent(props) {
5050
let lang = l.withFileName(fileItem);
5151
let prism;
5252

53-
console.log(lang);
54-
5553
if (lang.prismIndicator === "" || !lang.prismIndicator) {
5654
prism = "go";
5755
} else {

ui/src/Components/DashBoard/Settings/Settings.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,6 @@ export default function Settings(props) {
365365
.then((res) => {
366366
const { settingsEditPort } = res.data.data;
367367
if (settingsEditPort === "PORT_UPDATED") {
368-
console.log("Port updated!");
369368
window.location.reload();
370369
} else {
371370
portUpdateFailed(true);

0 commit comments

Comments
 (0)