@@ -1212,7 +1212,7 @@ public ContextMenu CreateContextMenuForStagedChanges(string selectedSingleFolder
12121212 {
12131213 ai . Click += async ( _ , e ) =>
12141214 {
1215- await App . ShowDailog ( new AIAssistant ( _repo , services [ 0 ] , _selectedStaged , t => CommitMessage = t ) ) ;
1215+ await App . ShowDialog ( new AIAssistant ( _repo , services [ 0 ] , _selectedStaged , t => CommitMessage = t ) ) ;
12161216 e . Handled = true ;
12171217 } ;
12181218 }
@@ -1226,7 +1226,7 @@ public ContextMenu CreateContextMenuForStagedChanges(string selectedSingleFolder
12261226 item . Header = service . Name ;
12271227 item . Click += async ( _ , e ) =>
12281228 {
1229- await App . ShowDailog ( new AIAssistant ( _repo , dup , _selectedStaged , t => CommitMessage = t ) ) ;
1229+ await App . ShowDialog ( new AIAssistant ( _repo , dup , _selectedStaged , t => CommitMessage = t ) ) ;
12301230 e . Handled = true ;
12311231 } ;
12321232
@@ -1667,7 +1667,7 @@ public ContextMenu CreateContextForOpenAI()
16671667
16681668 if ( services . Count == 1 )
16691669 {
1670- _ = App . ShowDailog ( new AIAssistant ( _repo , services [ 0 ] , _staged , t => CommitMessage = t ) ) ;
1670+ _ = App . ShowDialog ( new AIAssistant ( _repo , services [ 0 ] , _staged , t => CommitMessage = t ) ) ;
16711671 return null ;
16721672 }
16731673
@@ -1679,7 +1679,7 @@ public ContextMenu CreateContextForOpenAI()
16791679 item . Header = service . Name ;
16801680 item . Click += async ( _ , e ) =>
16811681 {
1682- await App . ShowDailog ( new AIAssistant ( _repo , dup , _staged , t => CommitMessage = t ) ) ;
1682+ await App . ShowDialog ( new AIAssistant ( _repo , dup , _staged , t => CommitMessage = t ) ) ;
16831683 e . Handled = true ;
16841684 } ;
16851685
@@ -1897,7 +1897,7 @@ private void DoCommit(bool autoStage, bool autoPush, CommitCheckPassed checkPass
18971897 {
18981898 if ( ( ! autoStage && _staged . Count == 0 ) || ( autoStage && _cached . Count == 0 ) )
18991899 {
1900- _ = App . ShowDailog ( new ConfirmEmptyCommit ( _cached . Count > 0 , stageAll => DoCommit ( stageAll , autoPush , CommitCheckPassed . FileCount ) ) ) ;
1900+ _ = App . ShowDialog ( new ConfirmEmptyCommit ( _cached . Count > 0 , stageAll => DoCommit ( stageAll , autoPush , CommitCheckPassed . FileCount ) ) ) ;
19011901 return ;
19021902 }
19031903 }
0 commit comments