import { useState } from 'react'; import { CheckCircleIcon } from '@shared/icons'; export function CacheTimeSetting() { const [time, setTime] = useState('0'); const update = async () => { // await updateSetting('cache_time', time); }; return (