Skip to content

Commit 04a048b

Browse files
committed
停止予定の Newt FormApp に備え注意文言を追加
1 parent a71d5da commit 04a048b

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

apps/web/app/components/FormPageSection.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script setup lang="ts">
22
import { useColor, useTypography } from '@vuejs-jp/composable'
33
import { useForm } from '~/composables/useForm'
4+
import { isNewtShutdown } from '~/utils/constants'
45
56
const {
67
name,
@@ -87,7 +88,7 @@ const updateDetail = (e: any) => {
8788
{{ $t('form.submit') }}
8889
</VFSubmitButton>
8990
</div>
90-
<VFTypography v-if="isSent" variant="other/200" color="sangosyo/200">
91+
<VFTypography v-if="!isNewtShutdown && isSent" variant="other/200" color="sangosyo/200">
9192
{{ $t('form.submit_done') }}
9293
</VFTypography>
9394
</form>

apps/web/app/content/en/contact.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
Thank you for your interest in Vue Fes Japan. If you do not receive a reply within 3 business days, please contact us again.
1+
Thank you for your interest in Vue Fes Japan. If you do not receive a reply within 3 business days, please contact us again.
2+
3+
The current contact form uses an external service called "Newt FormApp," but this service is scheduled to be discontinued on November 24, 2026.
4+
Therefore, if you would like to contact us, please use the contact form for the most recent event year.

apps/web/app/content/ja/contact.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
Vue Fes Japan にご興味をいただき、ありがとうございます。Vue Fes Japan へのご質問およびお問い合わせは、以下のフォームよりお願いいたします。通常、担当者より 3 営業日以内にご返信いたします。3 営業日以内に返信がない場合、お手数ですが再度お問い合わせください。
1+
Vue Fes Japan にご興味をいただき、ありがとうございます。Vue Fes Japan へのご質問およびお問い合わせは、以下のフォームよりお願いいたします。通常、担当者より 3 営業日以内にご返信いたします。3 営業日以内に返信がない場合、お手数ですが再度お問い合わせください。
2+
3+
現在ご利用いただいているお問い合わせフォームは、外部サービス「Newt FormApp」を使用して運用しておりますが、当サービスは近日(2026 年 11 月 24 日)中に提供を終了する予定となっております。
4+
つきましては、お問い合わせをご希望の方は、最新のイベント年のフォームをご利用くださいますようお願いいたします。

apps/web/app/utils/constants.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ export const endedCreateNamecard = true
6262
// Whether the conference is over
6363
export const isDone = true
6464

65+
// Whether the Newt is over
66+
export const isNewtShutdown = true
67+
6568
export const displayNameMaxLength = 24
6669

6770
export const photos = [

0 commit comments

Comments
 (0)