Skip to content
This repository was archived by the owner on Jul 2, 2022. It is now read-only.

Commit d2603b0

Browse files
committed
Fixed small asthetic changes
1 parent 8f70d53 commit d2603b0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CodeHub.Core/ViewModels/User/ProfileViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ private async void ToggleFollowing()
9191
}
9292
catch (System.Exception e)
9393
{
94-
ReportError("Unable to toggle following", e);
94+
ReportError(e);
9595
}
9696
}
9797

CodeHub.iOS/Views/PullRequests/PullRequestView.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ public override void ViewDidLoad()
3535
ViewModel.BindCollection(x => x.Comments, e => Render());
3636
}
3737

38-
public override void ViewDidAppear(bool animated)
38+
public override void ViewWillAppear(bool animated)
3939
{
40-
base.ViewDidAppear(animated);
40+
base.ViewWillAppear(animated);
4141
Title = "Pull Request #".t() + ViewModel.PullRequestId;
4242
}
4343

0 commit comments

Comments
 (0)