Skip to content

Commit e9f0fcf

Browse files
committed
fix build timestamp name
1 parent 2ac8bda commit e9f0fcf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/webapp/app/components/navigation/OrganizationSettingsSideMenu.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ export function OrganizationSettingsSideMenu({
108108
{buildInfo.appVersion || `v${buildInfo.packageVersion}`}
109109
</Paragraph>
110110
</div>
111-
{showBuildInfo && buildInfo.buildTimestampSeonds && (
111+
{showBuildInfo && buildInfo.buildTimestampSeconds && (
112112
<div className="flex flex-col gap-1">
113113
<SideMenuHeader title="Build timestamp" />
114114
<Paragraph variant="extra-small" className="px-2 text-text-dimmed">
115-
{new Date(Number(buildInfo.buildTimestampSeonds) * 1000).toISOString()}
115+
{new Date(Number(buildInfo.buildTimestampSeconds) * 1000).toISOString()}
116116
</Paragraph>
117117
</div>
118118
)}

0 commit comments

Comments
 (0)