Fix/add trial expire tip time (#13464)

This commit is contained in:
NFish
2025-02-10 12:53:59 +08:00
committed by GitHub
parent 33990426c1
commit 7d958635f0
4 changed files with 5 additions and 5 deletions

View File

@@ -119,7 +119,7 @@ export const ProviderContextProvider = ({
if (localStorage.getItem('anthropic_quota_notice') === 'true')
return
if (dayjs().isAfter(dayjs('2025-03-10')))
if (dayjs().isAfter(dayjs('2025-03-11')))
return
if (providersData?.data && providersData.data.length > 0) {
@@ -130,7 +130,7 @@ export const ProviderContextProvider = ({
Toast.notify({
type: 'info',
message: t('common.provider.anthropicHosted.trialQuotaTip'),
duration: 6000,
duration: 60000,
onClose: () => {
localStorage.setItem('anthropic_quota_notice', 'true')
},