From c1ca2d74e20d5f65cf03a96786dcb207a846c4c2 Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Thu, 18 Jul 2024 20:14:18 +0200 Subject: [PATCH] rm logs --- libs/remix-ui/git/src/components/panels/commands/pushpull.tsx | 1 - .../remix-ui/git/src/components/panels/commits/commitdetails.tsx | 1 - 2 files changed, 2 deletions(-) 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") }