Fix mes examples being undefined if empty

4fdff9fce2baae51001654ed35091e5c7b23b184

Nodude <75137537+NodudeWasTaken@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
public/script.js+1 -1
@@ -3827,7 +3827,7 @@ export async function Generate(type, { automatic_trigger, force_name2, quiet_pro
38273827 * @returns {string[]} Examples array with block heading
38283828 */
38293829 function parseMesExamples(examplesStr) {
38303830 if (!examplesStr || examplesStr.length === 0 || examplesStr === '<START>') {
38313831 return [];
38323832 }
38333833