Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
albertfolch-redeemeum committed Jan 17, 2025
1 parent 19015ee commit 0460876
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,11 @@ export const ConnectRoblox = forwardRef<HTMLDivElement, ConnectRobloxProps>(
useEffect(() => {
if (!robloxLoggedInData?.isLoggedIn) {
setActiveStep(0);
} else if (!address) {
setActiveStep(1);
}
}, [robloxLoggedInData?.isLoggedIn]);
}, [robloxLoggedInData?.isLoggedIn, address]);

useQuery(
[robloxLoggedInData, address, isAuthChecked],
() => {
Expand Down

0 comments on commit 0460876

Please sign in to comment.