This commit is contained in:
ろむねこ 2024-07-16 11:31:35 +09:00
parent ec71cb72b6
commit 313163e43a
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -53,7 +53,7 @@ const KidShiftAuthIntentHandler = {
const dialogState = Alexa.getDialogState(handlerInput.requestEnvelope);
// dialogStateがCOMPLETEDでない場合は、処理を続行
if (dialogState !== "COMPLETED") {
if (dialogState !== 'COMPLETED') {
return handlerInput.responseBuilder
.addDelegateDirective()
.getResponse();
@ -64,7 +64,7 @@ const KidShiftAuthIntentHandler = {
if (!loginCode) {
return handlerInput.responseBuilder
.addElicitSlotDirective("loginCode")
.speak("Login code is not provided")
.getResponse();
}