Skip to content

Commit

Permalink
Merge pull request #46483 from NJ-2020/fix/concierge-page-infinite-lo…
Browse files Browse the repository at this point in the history
…ading

Fix concierge page infinite loading
  • Loading branch information
madmax330 authored Aug 6, 2024
2 parents f7e265a + d09e578 commit d7c6bca
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pages/ConciergePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ function ConciergePage({session}: ConciergePageProps) {
}
});

useEffect(
() => () => {
useEffect(() => {
isUnmounted.current = false;
return () => {
isUnmounted.current = true;
},
[],
);
};
}, []);

return (
<ScreenWrapper testID={ConciergePage.displayName}>
Expand Down

0 comments on commit d7c6bca

Please sign in to comment.