add: bring back previously disabled api calls

This commit is contained in:
Mahyar Khanbolooki
2025-07-03 19:09:03 +03:30
parent a5d2e9cf72
commit f4f3544597
2 changed files with 83 additions and 74 deletions
@@ -10,7 +10,7 @@ function AuthFormWrapper({ children, isPending, ...restProps }: Props) {
<form {...restProps} className='p-6 lg:py-[75px] w-full flex items-center justify-center py-4 lg:items-center lg:px-10 px-4 drop-shadow-black h-full'>
<div className='relative h-full w-full px-4 sm:px-6 lg:p-0 flex flex-col max-h-[812px] max-w-[1200px] bg-container rounded-container overflow-clip lg:flex-row justify-between'>
{children}
<LoadingOverlay visible={isPending} />
<LoadingOverlay visible={isPending} bgOpacity={0} />
</div>
</form>
)