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 2ac8bda commit e9f0fcfCopy full SHA for e9f0fcf
apps/webapp/app/components/navigation/OrganizationSettingsSideMenu.tsx
@@ -108,11 +108,11 @@ export function OrganizationSettingsSideMenu({
108
{buildInfo.appVersion || `v${buildInfo.packageVersion}`}
109
</Paragraph>
110
</div>
111
- {showBuildInfo && buildInfo.buildTimestampSeonds && (
+ {showBuildInfo && buildInfo.buildTimestampSeconds && (
112
<div className="flex flex-col gap-1">
113
<SideMenuHeader title="Build timestamp" />
114
<Paragraph variant="extra-small" className="px-2 text-text-dimmed">
115
- {new Date(Number(buildInfo.buildTimestampSeonds) * 1000).toISOString()}
+ {new Date(Number(buildInfo.buildTimestampSeconds) * 1000).toISOString()}
116
117
118
)}
0 commit comments