diff --git a/libs/remix-ui/git/src/components/panels/commands/pushpull.tsx b/libs/remix-ui/git/src/components/panels/commands/pushpull.tsx index c337648b86..ed41ec0b27 100644 --- a/libs/remix-ui/git/src/components/panels/commands/pushpull.tsx +++ b/libs/remix-ui/git/src/components/panels/commands/pushpull.tsx @@ -19,7 +19,6 @@ export const PushPull = () => { const [force, setForce] = useState(false) useEffect(() => { - console.log('context.currentBranch', context.currentBranch, context.remotes, context.branches) setRemoteBranch(context.currentBranch.name) setLocalBranch(context.currentBranch.name) diff --git a/libs/remix-ui/git/src/components/panels/commits/commitdetails.tsx b/libs/remix-ui/git/src/components/panels/commits/commitdetails.tsx index f47e45c993..feb2630438 100644 --- a/libs/remix-ui/git/src/components/panels/commits/commitdetails.tsx +++ b/libs/remix-ui/git/src/components/panels/commits/commitdetails.tsx @@ -41,7 +41,6 @@ export const CommitDetails = (props: CommitDetailsProps) => { } const openFileOnRemote = (file: string, hash: string, branch: branch) => { - console.log(branch) if (!getRemote()) return window.open(`${getRemote() ? `${removeGitFromUrl(getRemote().url)}/blob/${hash}/${file}` : ""}`, "_blank") }