(timeZone: string)
| 115 | }; |
| 116 | |
| 117 | const normalizeTimeZone = (timeZone: string) => { |
| 118 | if (timeZone === 'client') { |
| 119 | // 'client' means Airtable uses the local timezone of the user to display the date, and stores it in UTC |
| 120 | return 'utc'; |
| 121 | } |
| 122 | return timeZone; |
| 123 | }; |
| 124 | |
| 125 | const getColumnResolver = (field: APIField): ColumnResolver => { |
| 126 | switch (field.type) { |