We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a559140 commit b0a8fc9Copy full SHA for b0a8fc9
src/utils/git.ts
@@ -6,7 +6,7 @@ export interface CommitInfo {
6
hash: string;
7
message: string;
8
author: string;
9
- date: string;
+ timestamp: string;
10
origin: string;
11
}
12
@@ -40,7 +40,7 @@ export async function getCommitInfo(): Promise<CommitInfo | undefined> {
40
hash: oid,
41
message: commit.message,
42
author: commit.author.name || commit.committer.name,
43
- date: String(commit.committer.timestamp),
+ timestamp: String(commit.committer.timestamp),
44
origin: origin.url,
45
};
46
} catch (error) {
0 commit comments