diff options
author | Eric Bailey <git@esb.lol> | 2024-03-20 17:44:31 -0500 |
---|---|---|
committer | Eric Bailey <git@esb.lol> | 2024-03-20 17:44:31 -0500 |
commit | 6bf97d4fd538a028a34e0cb46f02d0d887fe2435 (patch) | |
tree | b5b945a1b9e8a8d985c475922031469585f23c74 /src/components/forms/DateField/index.tsx | |
parent | 0dbc796ff6742f17a7bc5a6790c006088d9fe295 (diff) | |
download | voidsky-6bf97d4fd538a028a34e0cb46f02d0d887fe2435.tar.zst |
Adjust DateField timezone offset
Diffstat (limited to 'src/components/forms/DateField/index.tsx')
-rw-r--r-- | src/components/forms/DateField/index.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/forms/DateField/index.tsx b/src/components/forms/DateField/index.tsx index d5a4beda0..5662bb594 100644 --- a/src/components/forms/DateField/index.tsx +++ b/src/components/forms/DateField/index.tsx @@ -59,6 +59,7 @@ export function DateField({ <View style={a.gap_lg}> <View style={[a.relative, a.w_full, a.align_center]}> <DatePicker + timeZoneOffsetInMinutes={0} theme={t.name === 'light' ? 'light' : 'dark'} date={new Date(value)} onDateChange={onChangeInternal} |