diff --git a/src/components/DataEntry/DataEntryTable/NewEntry/VernDialog.tsx b/src/components/DataEntry/DataEntryTable/NewEntry/VernDialog.tsx
index 03fc935f64..c64fd130c6 100644
--- a/src/components/DataEntry/DataEntryTable/NewEntry/VernDialog.tsx
+++ b/src/components/DataEntry/DataEntryTable/NewEntry/VernDialog.tsx
@@ -5,7 +5,7 @@ import {
MenuList,
Typography,
} from "@mui/material";
-import { type ReactElement } from "react";
+import { Fragment, type ReactElement } from "react";
import { useTranslation } from "react-i18next";
import { GramCatGroup, type Word } from "api/models";
@@ -24,6 +24,10 @@ interface vernDialogProps {
}
export default function VernDialog(props: vernDialogProps): ReactElement {
+ if (!props.vernacularWords.length) {
+ return ;
+ }
+
return (