File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
frontend/src/components/layouts/client
lambdas/backend-client/src Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ import { AMPLIFY_OUTPUTS } from '@utils/amplify-outputs';
1111Amplify . configure ( AMPLIFY_OUTPUTS ( ) , { ssr : true } ) ;
1212
1313export function ClientLayout ( { children } : { children : React . ReactNode } ) {
14+ console . log ( 'amplify ouputs' , AMPLIFY_OUTPUTS ( ) ) ;
15+ console . log ( 'amplify config' , process . env ) ;
1416 return (
1517 < Authenticator . Provider >
1618 < NHSNotifySkipLink />
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const isApplicationFailure = (error: any): error is Failure =>
88 'technicalMessage' in error ;
99
1010export const createAxiosClient = ( token : string ) => {
11+ console . log ( 'backend api url' , process . env . BACKEND_API_URL ) ;
1112 const client = axios . create ( {
1213 baseURL : process . env . BACKEND_API_URL ,
1314 headers : {
You can’t perform that action at this time.
0 commit comments