File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/pages/gen1/[platform]/build-a-backend/auth/auth-migration-guide Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ Also notice that `userConfirmed` is no longer returned, and instead we return `n
301
301
const handleConfirmSignUp = async ({
302
302
username,
303
303
confirmationCode
304
- }) {
304
+ }) => {
305
305
await Auth .confirmSignUp (username, confirmationCode);
306
306
}
307
307
@@ -455,7 +455,7 @@ In v6, `confirmSignUp` now takes named parameters instead of positional paramete
455
455
const handleConfirmSignUp = async ({
456
456
username,
457
457
confirmationCode
458
- }) {
458
+ }) => {
459
459
const {
460
460
isSignUpComplete ,
461
461
userId ,
@@ -475,7 +475,7 @@ In v6, `confirmSignUp` now takes named parameters instead of positional paramete
475
475
const handleConfirmSignUp = async ({
476
476
username,
477
477
confirmationCode
478
- }) {
478
+ }) => {
479
479
await Auth .confirmSignUp (
480
480
username,
481
481
confirmationCode
@@ -498,7 +498,7 @@ In v6, `confirmSignUp` now takes named parameters instead of positional paramete
498
498
const handleConfirmSignUp = async ({
499
499
username,
500
500
confirmationCode
501
- }) {
501
+ }) => {
502
502
const {
503
503
isSignUpComplete ,
504
504
userId ,
@@ -522,7 +522,7 @@ In v6, `confirmSignUp` now takes named parameters instead of positional paramete
522
522
const handleConfirmSignUp = async ({
523
523
username,
524
524
confirmationCode
525
- }) {
525
+ }) => {
526
526
await Auth .confirmSignUp (
527
527
username,
528
528
confirmationCode,
You can’t perform that action at this time.
0 commit comments