diff --git a/.env.example b/.env.example index 367b6918..4b0fa8ab 100644 --- a/.env.example +++ b/.env.example @@ -1,3 +1,3 @@ GOOGLE_DRIVE_CLIENT_ID= GOOGLE_DRIVE_API_KEY= -CORS_HOST= \ No newline at end of file +API_HOST=http://localhost:3001 diff --git a/src/components/WishCounterAddModal.svelte b/src/components/WishCounterAddModal.svelte index a862c5f3..1ee98e52 100644 --- a/src/components/WishCounterAddModal.svelte +++ b/src/components/WishCounterAddModal.svelte @@ -49,6 +49,7 @@ id: name.id, time: dayjs(time).unix(), pity, + manualInput: true, }; addPullDetail(pull); @@ -60,6 +61,7 @@ id: name.id, time: dayjs(time).unix(), pity, + manualInput: true, }; editPullDetail(pull); diff --git a/src/components/WishCounterHowToModal.svelte b/src/components/WishCounterHowToModal.svelte index c3474a64..70a18ede 100644 --- a/src/components/WishCounterHowToModal.svelte +++ b/src/components/WishCounterHowToModal.svelte @@ -1,18 +1,20 @@