diff --git a/preview/src/blocks/GlyphsTable/render.ts b/preview/src/blocks/GlyphsTable/render.ts index d312f71f..ee098cfd 100644 --- a/preview/src/blocks/GlyphsTable/render.ts +++ b/preview/src/blocks/GlyphsTable/render.ts @@ -14,7 +14,7 @@ export function renderGlyphs (font: Font) { svgNode.setAttribute('viewBox', '0 0 162 71') for (let i = 0; i < font.glyphs.length; i++) { const glyph = font.glyphs.get(i) - if (!glyph.name) { + if (!glyph.name || glyph.name.endsWith('spacer')) { continue } const path = glyph.getPath(0, 0, 162)