Fix testing value

This commit is contained in:
gbuomprisco
2024-06-24 13:03:44 +08:00
parent 6ea75bf10a
commit 5e26e1256e

View File

@@ -100,7 +100,7 @@ function useVersionUpdater(props: { intervalTimeInSecond?: number } = {}) {
queryFn: async () => {
const response = await fetch('/version');
const currentVersion = await response.text();
const oldVersion = version + '23';
const oldVersion = version;
version = currentVersion;