Skip to content

Commit ee7c399

Browse files
committed
fix: track
1 parent bac6df1 commit ee7c399

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/web/app/components/admin/SpeakerItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ const onSubmit = () => {
336336
label="トラック"
337337
:items="[
338338
{ value: 'medpeer', text: 'メドピアトラック' },
339-
{ value: 'mntsq', text: 'MNTSQ全ての合意をフェアにするぞトラック' },
339+
{ value: 'mntsq', text: 'MNTSQが全ての合意をフェアにするぞトラック' },
340340
{ value: 'kickflow', text: 'kickflowトラック' },
341341
{ value: 'vue', text: 'vueトラック' },
342342
]"

apps/web/app/composables/useSession.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function useSession() {
2121

2222
return match(track)
2323
.with('medpeer', () => 'メドピアトラック')
24-
.with('mntsq', () => 'MNTSQ全ての合意をフェアにするぞトラック')
24+
.with('mntsq', () => 'MNTSQが全ての合意をフェアにするぞトラック')
2525
.with('kickflow', () => 'kickflowトラック')
2626
.with('vue', () => 'Vueトラック')
2727
.exhaustive()

0 commit comments

Comments
 (0)