Przeglądaj źródła

Fix auth page build (#1535)

Vishnu Mohandas 1 rok temu
rodzic
commit
60d6609c5e
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      apps/auth/src/pages/auth/index.tsx

+ 1 - 1
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';