{/* translation edit textbox */}
@@ -142,11 +152,7 @@ function Row({ index, entries }: Props) {
)}
value={currentTranslation}
onChange={(value) => setEntry({ currentTranslation: value })}
- data-tooltip={
- translationWarning
- ? "This translation is starting to become too long to fit in the time slot"
- : "Edit translated text"
- }
+ data-tooltip={"Edit translated text"}
/>
{/* original english textbox */}
@@ -157,11 +163,7 @@ function Row({ index, entries }: Props) {
)}
value={entry.currentOriginal}
onChange={(value) => setEntry({ currentOriginal: value })}
- data-tooltip={
- translationWarning
- ? "This text is starting to become too long to fit in the time slot"
- : "Original English text. If you see a significant problem, click to edit."
- }
+ data-tooltip={"Original English text. If you see a significant problem, click to edit."}
/>
{/* secondary actions */}