Skip to content

chore(site): update time until shutdown tooltip language #11964

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 31, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore(site): update time until shutdown tooltip language
  • Loading branch information
coadler committed Jan 31, 2024
commit 03d6696a8adbeeab3f20ef620ea30f440a43054d
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,6 @@ export const ttlShutdownAt = (formTTL: number): string => {
return `Your workspace will shut down ${formatDuration(
intervalToDuration({ start: 0, end: formTTL * 60 * 60 * 1000 }),
{ delimiter: " and " },
)} after its next start. We delay shutdown by this time whenever we detect activity.`;
)} after its next start. We delay shutdown by 1 hour whenever we detect activity.`;
}
};