@gem-sdk/pages 1.25.12 → 1.25.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -60,7 +60,7 @@ const Toolbox = ()=>{
|
|
|
60
60
|
});
|
|
61
61
|
// append new fonts
|
|
62
62
|
for (const font of fonts){
|
|
63
|
-
if (font.type
|
|
63
|
+
if (font.type !== 'custom') {
|
|
64
64
|
if (font.variants?.length) {
|
|
65
65
|
for (const variant of font.variants){
|
|
66
66
|
const cloneFont = JSON.parse(JSON.stringify(font));
|
|
@@ -56,7 +56,7 @@ const Toolbox = ()=>{
|
|
|
56
56
|
});
|
|
57
57
|
// append new fonts
|
|
58
58
|
for (const font of fonts){
|
|
59
|
-
if (font.type
|
|
59
|
+
if (font.type !== 'custom') {
|
|
60
60
|
if (font.variants?.length) {
|
|
61
61
|
for (const variant of font.variants){
|
|
62
62
|
const cloneFont = JSON.parse(JSON.stringify(font));
|