File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -218,10 +218,6 @@ export const StagingArea: React.FC<StagingAreaProps> = ({
218218 onOpenConflictResolver = { onOpenConflictResolver }
219219 isConflictBlockCountPending = { conflicts . isConflictBlockCountPending }
220220 totalConflictBlocksInView = { totalConflictBlocksInView }
221- mergeContinue = { conflicts . mergeContinue }
222- mergeAbort = { conflicts . mergeAbort }
223- rebaseContinue = { conflicts . rebaseContinue }
224- rebaseAbort = { conflicts . rebaseAbort }
225221 conflictEditor = { conflicts . conflictEditor }
226222 isConflictEditorLoading = { conflicts . isConflictEditorLoading }
227223 blockCountForPath = { conflicts . blockCountForPath }
Original file line number Diff line number Diff line change @@ -50,6 +50,10 @@ export type AppContextValue = AppSidebarProps & {
5050 autoOpenConflictResolverPath ?: string | null ;
5151 onAutoOpenConflictResolverConsumed ?: ( ) => void ;
5252 onOpenConflictResolverForPath ?: ( path : string ) => void ;
53+ onConflictMergeContinue : ( ) => void ;
54+ onConflictMergeAbort : ( ) => void ;
55+ onConflictRebaseContinue : ( ) => void ;
56+ onConflictRebaseAbort : ( ) => void ;
5357} ;
5458
5559export const AppStateContext = createContext < AppContextValue | null > ( null ) ;
You can’t perform that action at this time.
0 commit comments