From 5c0ecea506e88cbe9c91d16c8894782385a9ca4c Mon Sep 17 00:00:00 2001 From: Gisle Aune Date: Thu, 31 Dec 2020 18:55:43 +0100 Subject: [PATCH] fix ci. --- .drone.yml | 2 +- svelte-ui/src/components/Modal.svelte | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 79ea05a..fed7eaa 100644 --- a/.drone.yml +++ b/.drone.yml @@ -78,7 +78,7 @@ steps: commands: - cd svelte-ui - echo AWS_AMPLIFY_USER_POOL_ID=$AWS_AMPLIFY_USER_POOL_ID > build.env - - echo AWS_AMPLIFY_USER_POOL_WEB_CLIENT_ID=AWS_AMPLIFY_USER_POOL_WEB_CLIENT_ID >> build.env + - echo AWS_AMPLIFY_USER_POOL_WEB_CLIENT_ID=$AWS_AMPLIFY_USER_POOL_WEB_CLIENT_ID >> build.env - npm install - npm run build diff --git a/svelte-ui/src/components/Modal.svelte b/svelte-ui/src/components/Modal.svelte index 80976d3..7468671 100644 --- a/svelte-ui/src/components/Modal.svelte +++ b/svelte-ui/src/components/Modal.svelte @@ -10,8 +10,6 @@ onMount(() => { const listener = (ev: KeyboardEvent) => { - console.log(ev.key); - if ((ev.ctrlKey || ev.altKey) && (ev.key === "Escape" || ev.key.toLowerCase() === "q")) { dispatch("close"); }