diff --git a/app/src/lib/stores/app-store.ts b/app/src/lib/stores/app-store.ts index a53c00035c6..7da2b6c7710 100644 --- a/app/src/lib/stores/app-store.ts +++ b/app/src/lib/stores/app-store.ts @@ -1933,11 +1933,8 @@ export class AppStore extends TypedBaseStore { }) } - const status = await gitStore.performFailableOperation(() => { - return gitStore.loadStatus() - }) - - if (status != null) { + const status = await gitStore.loadStatus() + if (status !== null) { lookup.set(repo.id, { aheadBehind: gitStore.aheadBehind, changedFilesCount: status.workingDirectory.files.length,