diff --git a/libs/remix-ui/git/src/components/navigation/branchedetails.tsx b/libs/remix-ui/git/src/components/navigation/branchedetails.tsx index 3e3faac9b6..2407e5a071 100644 --- a/libs/remix-ui/git/src/components/navigation/branchedetails.tsx +++ b/libs/remix-ui/git/src/components/navigation/branchedetails.tsx @@ -57,7 +57,7 @@ export const BrancheDetailsNavigation = (props: BrancheDetailsNavigationProps) = } - if(branch.name === 'HEAD'){ + if (branch.name === 'HEAD'){ return null; } 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 00c6408472..44d99334e9 100644 --- a/libs/remix-ui/git/src/components/panels/commands/pushpull.tsx +++ b/libs/remix-ui/git/src/components/panels/commands/pushpull.tsx @@ -120,7 +120,7 @@ export const PushPull = () => { }) setLocalBranchOptions(localBranches) - if(!context.upstream){ + if (!context.upstream){ setRemoteBranchOptions([]) return }