Skip to content

Commit 368408e

Browse files
committed
Run prettier
1 parent 3c79659 commit 368408e

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2639,7 +2639,8 @@ export class AppStore extends TypedBaseStore<IAppState> {
26392639
getEnum(branchSortOrderKey, BranchSortOrder) ?? DEFAULT_BRANCH_SORT_ORDER
26402640

26412641
this.commitDateDisplay =
2642-
getEnum(commitDateDisplayKey, CommitDateDisplay) ?? defaultCommitDateDisplay
2642+
getEnum(commitDateDisplayKey, CommitDateDisplay) ??
2643+
defaultCommitDateDisplay
26432644

26442645
this.commitMessageGenerationDisclaimerLastSeen =
26452646
getNumber(commitMessageGenerationDisclaimerLastSeenKey) ?? null

app/src/ui/history/commit-list-item.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,9 @@ function renderRelativeTime(date: Date, showAbsolute: boolean) {
246246
return (
247247
<>
248248
{` • `}
249-
<span>{formatDate(date, { dateStyle: 'medium', timeStyle: 'short' })}</span>
249+
<span>
250+
{formatDate(date, { dateStyle: 'medium', timeStyle: 'short' })}
251+
</span>
250252
</>
251253
)
252254
}

0 commit comments

Comments
 (0)