Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to parse aws-exports.js. Has this file been modified #13446

Closed
2 tasks done
michaelflourish opened this issue Dec 2, 2023 · 3 comments
Closed
2 tasks done

Unable to parse aws-exports.js. Has this file been modified #13446

michaelflourish opened this issue Dec 2, 2023 · 3 comments
Labels
pending-response Issue is pending response from the issue author pending-triage Issue is pending triage platform-pull Issues related to `amplify pull`

Comments

@michaelflourish
Copy link

How did you install the Amplify CLI?

npm

If applicable, what version of Node.js are you using?

16.13.2

Amplify CLI Version

12.8.2

What operating system are you using?

Windows

Did you make any manual changes to the cloud resources managed by Amplify? Please describe the changes made.

I firstly hosted my website using Amplify manually before I install the Amplify-cli on my backend using the Visual Studio terminal

Describe the bug

Initially when I run "npm run serve" on my terminal I get this warnings:

in ./src/components/AppSignin.vue?vue&type=script&lang=js

export 'default' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

warning in ./src/components/AppSignup.vue?vue&type=script&lang=js

export 'Auth' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

App running at:

Note that the development build is not optimized.
To create a production build, run npm run build.

Then I proceeded to run "amplify pull --appId d1jj85s7k5o6br --envName dev"
then I got this:
Pre-pull status:

Current Environment: dev

┌──────────┬───────────────────┬───────────┬───────────────────┐
│ Category │ Resource name │ Operation │ Provider plugin │
├──────────┼───────────────────┼───────────┼───────────────────┤
│ Auth │ flickgridce0c352e │ No Change │ awscloudformation │
└──────────┴───────────────────┴───────────┴───────────────────┘

✔ Successfully pulled backend environment dev from the cloud.
✖ There was an error initializing your environment.
🛑 Unable to parse aws-exports.js. Has this file been modified?

Expected behavior

I want to authenticate users on my web application using AWS Cognito. I have created a form for Signup and Signin and would love to use the AWS Cognito to authenticate users after signing up. Authenticated users would be directed to another page in the website.

Reproduction steps

npm run serve
amplify pull --appId d1jj85s7k5o6br --envName dev
issue1
issue2

Project Identifier

Project Identifier: 1ffc49228437ff9bed7582f86c66138c

Log output

# Put your logs below this line

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ git init
Reinitialized existing Git repository in C:/Users/USER/Documents/flickgrid/.git/

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ git add .
warning: in the working copy of '.gitignore', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'package-lock.json', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'package.json', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'src/App.vue', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'src/main.js', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'vue.config.js', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'amplify/.config/project-config.json', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'amplify/README.md', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'amplify/backend/auth/flickgridce0c352e/cli-inputs.json', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'amplify/backend/backend-config.json', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'amplify/backend/tags.json', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'amplify/backend/types/amplify-dependent-resources-ref.d.ts', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'amplify/cli.json', LF will be replaced by CRLF the next time Git touches it
warning: in the working copy of 'amplify/hooks/README.md', LF will be replaced by CRLF the next time Git touches it      
warning: in the working copy of 'amplify/team-provider-info.json', LF will be replaced by CRLF the next time Git touches it

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ git commit -m "Latest Commit"
[master 1792c39] Latest Commit
 25 files changed, 6532 insertions(+), 1090 deletions(-)
 create mode 100644 amplify/.config/project-config.json
 create mode 100644 amplify/README.md
 create mode 100644 amplify/backend/auth/flickgridce0c352e/cli-inputs.json
 create mode 100644 amplify/backend/backend-config.json
 create mode 100644 amplify/backend/tags.json
 create mode 100644 amplify/backend/types/amplify-dependent-resources-ref.d.ts
 create mode 100644 amplify/cli.json
 create mode 100644 amplify/hooks/README.md
 create mode 100644 amplify/team-provider-info.json
 create mode 100644 src/components/AppMoviesLayout.vue
 create mode 100644 src/components/AppSignin.vue
 create mode 100644 src/components/AppSignup.vue
 create mode 100644 src/router/index.js

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ git remote add origin https://github.com/michaelflourish/flickgrid
error: remote origin already exists.

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ git remote add origin https://github.com/michaelflourish/flickgrid/
error: remote origin already exists.

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ git push -u origin master
Enumerating objects: 54, done.
Counting objects: 100% (54/54), done.
Delta compression using up to 8 threads
Compressing objects: 100% (33/33), done.
Writing objects: 100% (38/38), 68.26 KiB | 1.59 MiB/s, done.
Total 38 (delta 6), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (6/6), completed with 6 local objects.
To https://github.com/michaelflourish/flickgrid
   ad575f9..1792c39  master -> master
branch 'master' set up to track 'origin/master'.

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ npm run serve

> [email protected] serve
> vue-cli-service serve

 INFO  Starting development server...


 WARNING  Compiled with 3 warnings                                                                             4:50:12 PM

 warning  in ./src/components/AppSignin.vue?vue&type=script&lang=js

export 'Auth' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

 warning  in ./src/components/AppSignup.vue?vue&type=script&lang=js

export 'default' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

 warning  in ./src/main.js

export 'default' (imported as 'Amplify') was not found in 'aws-amplify' (possible exports: Amplify)


  App running at:
  - Local:   http://localhost:8081/ 
  - Network: http://10.0.0.199:8081/

  Note that the development build is not optimized.
  To create a production build, run npm run build.



USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ npm run serve

> [email protected] serve
> vue-cli-service serve

 INFO  Starting development server...


 WARNING  Compiled with 3 warnings                                                                             4:51:16 PM

 warning  in ./src/components/AppSignin.vue?vue&type=script&lang=js

export 'Auth' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

 warning  in ./src/components/AppSignup.vue?vue&type=script&lang=js

export 'default' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

 warning  in ./src/main.js

export 'default' (imported as 'Amplify') was not found in 'aws-amplify' (possible exports: Amplify)


  App running at:
  - Local:   http://localhost:8081/ 
  - Network: http://10.0.0.199:8081/

  Note that the development build is not optimized.
  To create a production build, run npm run build.



USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ npm run serve

> [email protected] serve
> vue-cli-service serve

 INFO  Starting development server...


 WARNING  Compiled with 3 warnings                                                                            10:25:38 AM

 warning  in ./src/components/AppSignin.vue?vue&type=script&lang=js

export 'Auth' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

 warning  in ./src/components/AppSignup.vue?vue&type=script&lang=js

export 'default' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

 warning  in ./src/main.js

export 'default' (imported as 'Amplify') was not found in 'aws-amplify' (possible exports: Amplify)


  App running at:
  - Local:   http://localhost:8081/ 
  - Network: http://10.0.0.199:8081/

  Note that the development build is not optimized.
  To create a production build, run npm run build.
  To create a production build, run npm run build.






























 WAIT  Compiling...                                                                                           11:09:56 AM

Compiling...







 WARNING  Compiled with 3 warnings                                                                            11:10:06 AM

 warning  in ./src/components/AppSignin.vue?vue&type=script&lang=js

export 'Auth' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

 warning  in ./src/components/AppSignup.vue?vue&type=script&lang=js

export 'default' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

 warning  in ./src/main.js

export 'default' (imported as 'Amplify') was not found in 'aws-amplify' (possible exports: Amplify)


  App running at:
  - Local:   http://localhost:8081/ 
  - Network: http://10.0.0.199:8081/




USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ npm run serve

> [email protected] serve
> vue-cli-service serve

 INFO  Starting development server...


 WARNING  Compiled with 1 warning                                                                                12:17:55 PM

 warning  in ./src/components/AppSignin.vue?vue&type=script&lang=js

export 'default' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)


  App running at:
  - Local:   http://localhost:8080/ 
  - Network: http://10.0.0.199:8080/

  Note that the development build is not optimized.
  To create a production build, run npm run build.












 WAIT  Compiling...                                                                                              12:21:58 PM

Compiling...










 WARNING  Compiled with 2 warnings                                                                               12:22:00 PM

 warning  in ./src/components/AppSignin.vue?vue&type=script&lang=js

export 'default' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

 warning  in ./src/components/AppSignup.vue?vue&type=script&lang=js

export 'Auth' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

                                                                                                                            
  App running at:
  - Local:   http://localhost:8080/
  - Network: http://10.0.0.199:8080/



USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ amplify pull --appId d1jj85s7k5o6br --envName dev

Pre-pull status:

    Current Environment: dev

┌──────────┬───────────────────┬───────────┬───────────────────┐
│ Category │ Resource name     │ Operation │ Provider plugin   │
├──────────┼───────────────────┼───────────┼───────────────────┤
│ Auth     │ flickgridce0c352e │ No Change │ awscloudformation │
└──────────┴───────────────────┴───────────┴───────────────────┘

✔ Successfully pulled backend environment dev from the cloud.
✖ There was an error initializing your environment.
🛑 Unable to parse aws-exports.js. Has this file been modified?

Resolution: Please report this issue at https://github.com/aws-amplify/amplify-cli/issues and include the project identifier from: 'amplify diagnose --send-report'
Learn more at: https://docs.amplify.aws/cli/project/troubleshooting/

Session Identifier: 748eb2b6-6431-4ce8-b110-2600c40a8149

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ amplify pull

Pre-pull status:

    Current Environment: dev

┌──────────┬───────────────────┬───────────┬───────────────────┐
│ Category │ Resource name     │ Operation │ Provider plugin   │
├──────────┼───────────────────┼───────────┼───────────────────┤
│ Auth     │ flickgridce0c352e │ No Change │ awscloudformation │
└──────────┴───────────────────┴───────────┴───────────────────┘

✔ Successfully pulled backend environment dev from the cloud.
✖ There was an error initializing your environment.
🛑 Unable to parse aws-exports.js. Has this file been modified?

Resolution: Please report this issue at https://github.com/aws-amplify/amplify-cli/issues and include the project identifier from: 'amplify diagnose --send-report'
Learn more at: https://docs.amplify.aws/cli/project/troubleshooting/

Session Identifier: ea773c86-46ae-474f-bab1-b691d0c2793d

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ amplify diagnose --send-report

Learn more at https://docs.amplify.aws/cli/reference/diagnose/

✅ Report saved: C:\Users\USER\AppData\Local\Temp\flickgrid\report-1701539405681.zip

✔ Done

Project Identifier: 1ffc49228437ff9bed7582f86c66138c


USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ npm --version
8.1.2

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ amplify --version
12.8.2

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ amplifycli --version
bash: amplifycli: command not found

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ node -v
v16.13.2

USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
 WARNING  Compiled with 2 warnings                                                                                1:04:40 PM

 warning  in ./src/components/AppSignin.vue?vue&type=script&lang=js

export 'default' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

 warning  in ./src/components/AppSignup.vue?vue&type=script&lang=js

export 'Auth' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)


  App running at:
  - Local:   http://localhost:8080/
  - Network: http://10.0.0.199:8080/

  Note that the development build is not optimized.
  To create a production build, run npm run build.



USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ npm run serve

> [email protected] serve
> vue-cli-service serve

 INFO  Starting development server...


 WARNING  Compiled with 2 warnings                                                                                1:17:50 PM

 warning  in ./src/components/AppSignin.vue?vue&type=script&lang=js

export 'default' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)

 warning  in ./src/components/AppSignup.vue?vue&type=script&lang=js

export 'Auth' (imported as 'Auth') was not found in '@aws-amplify/auth' (possible exports: AuthError, autoSignIn, confirmResetPassword, confirmSignIn, confirmSignUp, confirmUserAttribute, decodeJWT, deleteUser, deleteUserAttributes, fetchAuthSession, fetchDevices, fetchMFAPreference, fetchUserAttributes, forgetDevice, getCurrentUser, rememberDevice, resendSignUpCode, resetPassword, sendUserAttributeVerificationCode, setUpTOTP, signIn, signInWithRedirect, signOut, signUp, updateMFAPreference, updatePassword, updateUserAttribute, updateUserAttributes, verifyTOTPSetup)


  App running at:
  - Local:   http://localhost:8080/ 
  - Network: http://10.0.0.199:8080/

  Note that the development build is not optimized.
  To create a production build, run npm run build.



USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)
$ amplify diagnose --send-report

Learn more at https://docs.amplify.aws/cli/reference/diagnose/

✅ Report saved: C:\Users\USER\AppData\Local\Temp\flickgrid\report-1701541168478.zip

✔ Done

Project Identifier: 1ffc49228437ff9bed7582f86c66138c


USER@DESKTOP-2JMHJBF MINGW64 ~/Documents/flickgrid (master)


Additional information

No response

Before submitting, please confirm:

  • I have done my best to include a minimal, self-contained set of instructions for consistently reproducing the issue.
  • I have removed any sensitive information from my code snippets and submission.
@michaelflourish michaelflourish added the pending-triage Issue is pending triage label Dec 2, 2023
@ykethan
Copy link
Member

ykethan commented Dec 4, 2023

Hey @michaelflourish, thank you for reaching out. Could you remove the local aws-exports.js then re-run the pull commands with --debug and provide us the output.

@ykethan ykethan added pending-response Issue is pending response from the issue author platform-pull Issues related to `amplify pull` labels Dec 4, 2023
@josefaidt
Copy link
Contributor

Closing due to inactivity

@josefaidt josefaidt closed this as not planned Won't fix, can't repro, duplicate, stale Feb 2, 2024
Copy link

github-actions bot commented Feb 2, 2024

⚠️COMMENT VISIBILITY WARNING⚠️

Comments on closed issues are hard for our team to see.
If you need more assistance, please open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pending-response Issue is pending response from the issue author pending-triage Issue is pending triage platform-pull Issues related to `amplify pull`
Projects
None yet
Development

No branches or pull requests

3 participants