Skip to content

Commit 671e6e7

Browse files
committed
Run Prettier
1 parent f80fcaa commit 671e6e7

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

app/src/lib/stores/app-store.ts

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4913,8 +4913,9 @@ export class AppStore extends TypedBaseStore<IAppState> {
49134913
repository,
49144914
account
49154915
)
4916-
const refreshedRepo =
4917-
await this.repositoryWithRefreshedGitHubRepository(repo)
4916+
const refreshedRepo = await this.repositoryWithRefreshedGitHubRepository(
4917+
repo
4918+
)
49184919
await this._refreshRepository(refreshedRepo)
49194920
}
49204921

@@ -5567,8 +5568,9 @@ export class AppStore extends TypedBaseStore<IAppState> {
55675568

55685569
private async fastForwardBranches(repository: Repository) {
55695570
try {
5570-
const eligibleBranches =
5571-
await getBranchesDifferingFromUpstream(repository)
5571+
const eligibleBranches = await getBranchesDifferingFromUpstream(
5572+
repository
5573+
)
55725574

55735575
await fastForwardBranches(repository, eligibleBranches)
55745576
} catch (e) {
@@ -7296,8 +7298,9 @@ export class AppStore extends TypedBaseStore<IAppState> {
72967298
// association is out of date. So try again before we bail on providing an
72977299
// authenticating user.
72987300
if (!account) {
7299-
updatedRepository =
7300-
await this.repositoryWithRefreshedGitHubRepository(repository)
7301+
updatedRepository = await this.repositoryWithRefreshedGitHubRepository(
7302+
repository
7303+
)
73017304
}
73027305

73037306
return fn(updatedRepository)

0 commit comments

Comments
 (0)