remove export from createCustomLog function

This commit is contained in:
Joshua 2024-02-05 16:25:50 +01:00
parent bc6ffad697
commit d45d7479f0

View file

@ -51,7 +51,7 @@ baseStyles.forEach((style) => {
* // Create a custom log with name "misc" and base color "#9333ea" * // Create a custom log with name "misc" and base color "#9333ea"
* createCustomLog("misc", "#9333ea") * createCustomLog("misc", "#9333ea")
*/ */
export function createCustomLog(name, baseColor) { function createCustomLog(name, baseColor) {
if (!name || !baseColor) { if (!name || !baseColor) {
throw new Error('Missing parameters') throw new Error('Missing parameters')
} }