From 6c689ed035eb3aa016a87d06e0e26fc3589b3f65 Mon Sep 17 00:00:00 2001 From: Abhinav Date: Fri, 5 Jan 2024 21:25:50 +0530 Subject: [PATCH] fix auth page build --- apps/auth/src/pages/auth/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/auth/src/pages/auth/index.tsx b/apps/auth/src/pages/auth/index.tsx index 451b6fb47..0eb3dc70b 100644 --- a/apps/auth/src/pages/auth/index.tsx +++ b/apps/auth/src/pages/auth/index.tsx @@ -2,7 +2,7 @@ import React, { useContext, useEffect, useState } from 'react'; import OTPDisplay from 'components/OTPDisplay'; import { getAuthCodes } from 'services'; import { CustomError } from '@ente/shared/error'; -import { PHOTOS_PAGES as PAGES } from '@ente/shared/constants/pages'; +import { AUTH_PAGES as PAGES } from '@ente/shared/constants/pages'; import { useRouter } from 'next/router'; import { AuthFooter } from 'components/AuthFooter'; import { AppContext } from 'pages/_app';