Favivon - Correção

This commit is contained in:
2026-05-30 23:14:48 -03:00
parent 643f628ad7
commit 643f4a3f10
4 changed files with 61 additions and 1 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ const Footer = () => {
const [version, setVersion] = useState('');
useEffect(() => {
fetch('/version.json')
fetch('/version.json?t=' + Date.now())
.then(r => r.json())
.then(data => setVersion(data.version))
.catch(() => setVersion(''));