fix: use correct i18n key for comment placeholder in queue tab
Some checks failed
CI / Check / Test (push) Has been cancelled

This commit is contained in:
2026-06-10 02:47:04 +02:00
parent 5dbc02b58f
commit b882569ee1

View File

@@ -228,7 +228,7 @@ function QueueTab() {
</div>
<Textarea
className="mt-2"
placeholder={t("diary.commentPlaceholder")}
placeholder={t("logReview.commentPlaceholder")}
value={comments[entry.id] ?? ""}
onChange={(e) => setComments((p) => ({ ...p, [entry.id]: e.target.value }))}
rows={2}