Skip to content

Commit

Permalink
fix generic error due to incorrect imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kamalkishor1991 committed Aug 3, 2024
1 parent f7a227c commit bb586b6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions libs/Helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function extractHexColors2(text) {
return hexColors;
}

export function extractHexColors(text) {
function extractHexColors(text) {
let extractedColors1 = extractHexColors1(text);
let extractedColors2 = extractHexColors2(text);
let combinedHexMap = {};
Expand All @@ -234,7 +234,7 @@ export function extractHexColors(text) {
return Object.values(combinedHexMap);
}

export function capitalizeFirstLetter(string) {
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}

Expand All @@ -246,5 +246,7 @@ export {
initPurchase,
readRemoteConfig,
planLabels,
getPlanPrice
getPlanPrice,
extractHexColors,
capitalizeFirstLetter
};

0 comments on commit bb586b6

Please sign in to comment.