diff --git a/src/widgets/customapi/component.jsx b/src/widgets/customapi/component.jsx index 61f878a1a..c2ed090be 100644 --- a/src/widgets/customapi/component.jsx +++ b/src/widgets/customapi/component.jsx @@ -111,14 +111,15 @@ function getColor(mapping, customData) { } catch (e) { return ""; } - case ("black") : + case ("black"): return `text-black`; - case ("white") : + case ("white"): return `text-white`; - case ("theme") : + case ("theme"): return `text-theme-500`; default: return "" + } } export default function Component({ service }) {