From a7769451f362b0b9624b2a31e521911ee3cedc8e Mon Sep 17 00:00:00 2001 From: Topliceanu Razvan <47887589+topliceanurazvan@users.noreply.github.com> Date: Tue, 20 Jun 2023 17:04:29 +0300 Subject: [PATCH] fix: git publish local branch and commit --- src/components/organisms/GitPane/BottomActions.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/organisms/GitPane/BottomActions.tsx b/src/components/organisms/GitPane/BottomActions.tsx index 064263b223..d3b885e022 100644 --- a/src/components/organisms/GitPane/BottomActions.tsx +++ b/src/components/organisms/GitPane/BottomActions.tsx @@ -105,6 +105,7 @@ const BottomActions: React.FC = () => { } dispatch(addGitBranch(`origin/${currentBranch}`)); + await fetchRepo({path: selectedProjectRootFolder}); dispatch(setGitLoading(false)); }, [currentBranch, dispatch, gitRepo, selectedProjectRootFolder]);