Skip to content

Commit

Permalink
reduce timeout (#1177)
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyjux authored Sep 13, 2024
1 parent 952c33d commit 0a07cdc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const NoGatewayRedirect = () => {
React.useEffect(() => {
const checkNamespaceAndRedirect = async () => {
// Wait for a short period to ensure user data is loaded
await new Promise(resolve => setTimeout(resolve, 2000));
await new Promise(resolve => setTimeout(resolve, 500));

setIsChecking(false);

Expand Down

0 comments on commit 0a07cdc

Please sign in to comment.