feat: add jdcloud live video deployer

This commit is contained in:
Fu Diwei
2025-02-20 10:13:02 +08:00
parent 5139198691
commit 22d971db4b
16 changed files with 247 additions and 10 deletions

View File

@@ -3,7 +3,7 @@
import { version } from "@/domain/version";
export type UseVersionCheckerReturns = {
data: boolean;
hasNewVersion: boolean;
check: () => void;
};
@@ -62,7 +62,7 @@ const useVersionChecker = () => {
);
return {
data: !!data,
hasNewVersion: !!data,
check: refresh,
};
};