Skip to content

Commit

Permalink
Update TranslationViewModel.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
BeepBeepBopBop committed Dec 25, 2024
1 parent 1ecb40d commit aa32da6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LM-Kit-Maestro/ViewModels/TranslationViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ protected override void HandleSubmit()
private void OnTranslationResult(string? result, Exception? exception = null)
{
LatestResult = result;
LastTranslationIsSuccesful = exception == null && result != null;
LastTranslationIsSuccessful = exception == null && result != null;

if (exception != null)
{
Expand Down

0 comments on commit aa32da6

Please sign in to comment.