@ -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)
@ -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")