We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0373117 commit d328968Copy full SHA for d328968
components/Newsfeed/Newsfeed.tsx
@@ -17,6 +17,8 @@ import ProfileSettingsModal from "components/EditProfilePage/ProfileSettingsModa
17
import { NewsfeedCard } from "components/NewsfeedCard/NewsfeedCard"
18
import { ProfileButtons } from "components/ProfilePage/ProfileButtons"
19
20
+import LoginPage from "components/Login/login"
21
+
22
export default function Newsfeed() {
23
const { t } = useTranslation("common")
24
@@ -251,7 +253,8 @@ export default function Newsfeed() {
251
253
</StyledContainer>
252
254
</div>
255
) : (
- <ErrorPage statusCode={404} withDarkMode={false} />
256
+ // <ErrorPage statusCode={404} withDarkMode={false} />
257
+ <LoginPage />
258
)}
259
</>
260
0 commit comments