diff --git a/documentation/src/pages/verify/index.tsx b/documentation/src/pages/verify/index.tsx index 3bd1783..4a6db0b 100644 --- a/documentation/src/pages/verify/index.tsx +++ b/documentation/src/pages/verify/index.tsx @@ -30,6 +30,13 @@ const Verify: React.FC = () => { } }, []); // Empty dependency array ensures it only runs once on component mount + useEffect(() => { + // Additional effect to check the license when ipAddress changes (e.g., due to user input) + if (ipAddress) { + handleCheckLicense(); + } + }, [ipAddress]); // Re-run the effect whenever ipAddress changes + return (