fix indent

This commit is contained in:
rca 2024-07-17 08:39:09 +09:00
parent 05c06f34f4
commit 7b750cb9d4

View File

@ -45,12 +45,12 @@ const KidShiftAuthIntentHandler = {
handlerInput.attributesManager.setPersistentAttributes(tokenResponse);
await handlerInput.attributesManager.savePersistentAttributes();
return handlerInput.responseBuilder
.speak('Login successful')
.getResponse();
.speak('Login successful')
.getResponse();
} else {
return handlerInput.responseBuilder
.speak('Login failed')
.getResponse();
.speak('Login failed')
.getResponse();
}
}
};