@@ -1212,7 +1212,7 @@ public ContextMenu CreateContextMenuForStagedChanges(string selectedSingleFolder
1212
1212
{
1213
1213
ai . Click += async ( _ , e ) =>
1214
1214
{
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 ) ) ;
1216
1216
e . Handled = true ;
1217
1217
} ;
1218
1218
}
@@ -1226,7 +1226,7 @@ public ContextMenu CreateContextMenuForStagedChanges(string selectedSingleFolder
1226
1226
item . Header = service . Name ;
1227
1227
item . Click += async ( _ , e ) =>
1228
1228
{
1229
- await App . ShowDailog ( new AIAssistant ( _repo , dup , _selectedStaged , t => CommitMessage = t ) ) ;
1229
+ await App . ShowDialog ( new AIAssistant ( _repo , dup , _selectedStaged , t => CommitMessage = t ) ) ;
1230
1230
e . Handled = true ;
1231
1231
} ;
1232
1232
@@ -1667,7 +1667,7 @@ public ContextMenu CreateContextForOpenAI()
1667
1667
1668
1668
if ( services . Count == 1 )
1669
1669
{
1670
- _ = App . ShowDailog ( new AIAssistant ( _repo , services [ 0 ] , _staged , t => CommitMessage = t ) ) ;
1670
+ _ = App . ShowDialog ( new AIAssistant ( _repo , services [ 0 ] , _staged , t => CommitMessage = t ) ) ;
1671
1671
return null ;
1672
1672
}
1673
1673
@@ -1679,7 +1679,7 @@ public ContextMenu CreateContextForOpenAI()
1679
1679
item . Header = service . Name ;
1680
1680
item . Click += async ( _ , e ) =>
1681
1681
{
1682
- await App . ShowDailog ( new AIAssistant ( _repo , dup , _staged , t => CommitMessage = t ) ) ;
1682
+ await App . ShowDialog ( new AIAssistant ( _repo , dup , _staged , t => CommitMessage = t ) ) ;
1683
1683
e . Handled = true ;
1684
1684
} ;
1685
1685
@@ -1897,7 +1897,7 @@ private void DoCommit(bool autoStage, bool autoPush, CommitCheckPassed checkPass
1897
1897
{
1898
1898
if ( ( ! autoStage && _staged . Count == 0 ) || ( autoStage && _cached . Count == 0 ) )
1899
1899
{
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 ) ) ) ;
1901
1901
return ;
1902
1902
}
1903
1903
}
0 commit comments