1
0
mirror of synced 2024-11-27 17:00:55 +01:00

fix: touch to (de)activate texts were reversed

This commit is contained in:
노주찬 2023-03-30 18:30:13 +09:00
parent 424312ab6e
commit 0307aeaf92

View File

@ -129,8 +129,8 @@ const CardList = (props: { cards: Card[] }) => {
onDelete={onDelete}
mainText={
card.index === enabledCardIndex
? t('card.touch_to_activate')
: t('card.touch_to_deactivate')
? t('card.touch_to_deactivate')
: t('card.touch_to_activate')
}
/>
)}