Update index.tsx

This commit is contained in:
Stefan Pejcic
2024-06-04 16:08:15 +02:00
committed by GitHub
parent 530ea5a991
commit 723c6af1d7

View File

@@ -41,7 +41,7 @@ const Install: React.FC = () => {
const [latestVersion, setLatestVersion] = useState<string>("");
useEffect(() => {
fetch("https://update.openpanel.co/")
fetch("https://get.openpanel.co/version")
.then(response => response.text())
.then(data => {
const version = data.trim();