fix: increase max cache limit and update slider marks in MiniAppSettings (#6414)

* fix: increase max cache limit and update slider marks in MiniAppSettings

* fix: adjust max cache limit and update slider marks in MiniAppSettings

* Update MiniAppSettings.tsx

---------

Co-authored-by: George Zhao <georgezhao@SKJLAB>
This commit is contained in:
George Zhao 2025-05-28 01:06:17 +08:00 committed by GitHub
parent cf1d5c098f
commit 02cb005668
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -120,13 +120,13 @@ const MiniAppSettings: FC = () => {
</Tooltip>
<Slider
min={1}
max={5}
max={10}
value={maxKeepAliveMinapps}
onChange={handleCacheChange}
marks={{
1: '1',
3: '3',
5: '5'
5: '5',
10: 'Max'
}}
tooltip={{ formatter: (value) => `${value}` }}
/>