refactor(nestjs): hook the new endpoints

This commit is contained in:
Ahmed Bouhuolia
2025-05-22 19:55:55 +02:00
parent 4e64a9eadb
commit 2b3f98d8fe
12 changed files with 258 additions and 230 deletions

View File

@@ -40,9 +40,7 @@ export function OneClickDemoPageContent() {
// One the job done request sign-in using the demo id.
useEffect(() => {
if (isJobDone) {
oneClickDemoSignIn({ demoId }).then((res) => {
debugger;
});
oneClickDemoSignIn({ demoId }).then((res) => {});
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isJobDone]);