diff --git a/packages/gui/src/components/plot/add/PlotAddChoosePlotter.tsx b/packages/gui/src/components/plot/add/PlotAddChoosePlotter.tsx index 258d95e851..2ea8756ff0 100644 --- a/packages/gui/src/components/plot/add/PlotAddChoosePlotter.tsx +++ b/packages/gui/src/components/plot/add/PlotAddChoosePlotter.tsx @@ -77,7 +77,7 @@ export default function PlotAddChoosePlotter(props: Props) { const regex = /BladeBit requires at least (?\d*[.]?\d+) GiB of RAM to operate/; const m = regex.exec(msg); if (!m || !m.groups || !m.groups.ram) { - return undefined; + return t`Insufficient RAM for BladeBit`; } return t`BladeBit requires at least ${m.groups.ram} GiB of RAM to operate`; };