From 852e8a15a17d1423754b88a1167da3769b3b7bdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=8D=E3=82=80=E3=81=AD=E3=81=93?= Date: Tue, 16 Jul 2024 14:19:16 +0900 Subject: [PATCH] test --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 946a433..959d761 100644 --- a/src/index.ts +++ b/src/index.ts @@ -38,6 +38,7 @@ const KidShiftAuthIntentHandler = { handle(handlerInput: Alexa.HandlerInput) { return handlerInput.responseBuilder .speak('DEBUG: your auth code is ' + Alexa.getSlotValue(handlerInput.requestEnvelope, 'loginCode')) + .reprompt('DEBUG: your auth code is ' + Alexa.getSlotValue(handlerInput.requestEnvelope, 'loginCode')) .getResponse(); } };