diff --git a/web/src/components/PublishDialog.jsx b/web/src/components/PublishDialog.jsx index 553f9af..4413aef 100644 --- a/web/src/components/PublishDialog.jsx +++ b/web/src/components/PublishDialog.jsx @@ -467,10 +467,8 @@ const PublishDialog = (props) => { "aria-label": t("publish_dialog_call_label"), }} > - {account?.phone_numbers?.map((phoneNumber, i) => ( - // TODO(eslint): Possibly just use the phone number as a key? - // eslint-disable-next-line react/no-array-index-key - + {account?.phone_numbers?.map((phoneNumber) => ( + {t("publish_dialog_call_item", { number: phoneNumber })} ))}