fix: sort time zones (#2210)

Summary:

The list of time zones in the edit workspace schedule form is not sorted
alphabetically.
This commit is contained in:
G r e y
2022-06-09 18:42:27 +01:00
committed by GitHub
parent 518495a6c5
commit 92db80cadc
@@ -1,3 +1,3 @@
import tzData from "tzdata"
export const zones: string[] = Object.keys(tzData.zones)
export const zones: string[] = Object.keys(tzData.zones).sort()