mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 12:20:34 +00:00
fix: timezone count (#4604)
* fix: timezone count * fix: ts * fix: test llm
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import React, { useRef } from 'react';
|
||||
import { timezoneList } from '@fastgpt/global/common/time/timezone';
|
||||
import { getTimeZoneList } from '@fastgpt/global/common/time/timezone';
|
||||
import { Select } from '@chakra-ui/react';
|
||||
|
||||
const TimezoneSelect = ({ value, onChange }: { value?: string; onChange: (e: string) => void }) => {
|
||||
const timezones = useRef(timezoneList());
|
||||
const timezones = useRef(getTimeZoneList());
|
||||
|
||||
return (
|
||||
<Select
|
||||
|
Reference in New Issue
Block a user