diff --git a/pages/explore/index.tsx b/pages/explore/index.tsx
index 4316fa0939..2ec9925f94 100644
--- a/pages/explore/index.tsx
+++ b/pages/explore/index.tsx
@@ -195,14 +195,14 @@ function RecommendationSection({
revalidateOnFocus: false,
});
- if (!session) {
+ if (isLoading) {
+ return ;
+ } else if (!session) {
return (
);
- } else if (isLoading) {
- return ;
} else if (isError) {
return There has been an error. Try reloading the page!;
} else if (user && !user.interests) {