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 c685042 commit dbc5a63Copy full SHA for dbc5a63
apps/web/core/components/project/form.tsx
@@ -411,6 +411,7 @@ export function ProjectDetailsForm(props: IProjectDetailsForm) {
411
}}
412
error={Boolean(errors.timezone)}
413
buttonClassName="border-none"
414
+ disabled={!isAdmin}
415
/>
416
</>
417
)}
apps/web/core/hooks/use-timezone.tsx
@@ -59,11 +59,6 @@ const useTimezone = () => {
59
query: "utc, coordinated universal time",
60
content: "UTC",
61
},
62
- {
63
- value: "Universal",
64
- query: "universal, coordinated universal time",
65
- content: "Universal",
66
- },
67
];
68
69
const selectedTimezone = (value: string | undefined) => options.find((option) => option.value === value)?.content;
0 commit comments