Alias keyring function

This commit is contained in:
Gregory Schier
2025-10-01 10:22:06 -07:00
parent eafefb1894
commit 7969fcb76c
3 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ export function useLicense() {
};
}, []);
const check = useQuery({
const check = useQuery<LicenseCheckStatus | null, string>({
refetchInterval: 1000 * 60 * 60 * 12, // Refetch every 12 hours
refetchOnWindowFocus: false,
queryKey: CHECK_QUERY_KEY,