refactor: skip validation

This commit is contained in:
Mauricio Siu 2024-08-26 08:55:09 -06:00
parent 5ea7a31c6d
commit ba01c5056e

View File

@ -25,6 +25,11 @@ export async function getServerSideProps(
};
}
if (process.env.NODE_ENV === "development") {
return {
props: {},
};
}
const isValid = await isValidLicense();
if (!isValid) {