We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f36be18 commit 09d9f4dCopy full SHA for 09d9f4d
packages/backend/src/common/retrieveUI/retrieveColors.ts
@@ -25,7 +25,7 @@ export const retrieveGenericSolidUIColors = (
25
selectionColors.paints.forEach((paint) => {
26
const fill = convertSolidColor(paint, framework);
27
if (fill) {
28
- const exists = colors.find(col => col.colorName === fill.colorName)
+ const exists = colors.find(col => col.exportValue === fill.exportValue)
29
if (!exists) {
30
colors.push(fill);
31
}
0 commit comments