Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRivers committed Jan 10, 2025
1 parent db4bc45 commit 2736f56
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions lib/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,90 +342,90 @@ const registerGUID = "@b1d3a51558e64036ad072b56ebae37f5@";
const loginGUID = "@847681e125384709836f921deb311104@";

/**
*
*
* @returns Kinde placeholder for the main page content
*/
export const getKindeWidget = (): KindePlaceholder =>
"@cd65da2987c740d58961024aa4a27194@";

/**
*
*
* @returns Kinde placeholder for the nonce
*/
export const getKindeNonce = (): KindePlaceholder =>
"@43dffdf2c22f40e9981303cb383f6fac@";

/**
*
*
* @returns Kinde placeholder for the required CSS
*/
export const getKindeRequiredCSS = (): KindePlaceholder =>
"@ce0ef44d50f6408985f00c04a85d8430@";

/**
*
*
* @returns Kinde placeholder for the required JS
*/
export const getKindeRequiredJS = (): KindePlaceholder =>
"@8103c7ff23fe49edb9b0537d2927e74e@";

/**
*
*
* @returns Kinde placeholder for the CSRF token
*/
export const getKindeCSRF = (): KindePlaceholder =>
"@0c654432670c4d0292c3a0bc3c533247@";

/**
*
*
* @returns Register URL Placeholder
*/
export const getKindeRegisterUrl = (): KindePlaceholder => registerGUID;

/**
*
*
* @returns Login URL Placeholder
*/
export const getKindeLoginUrl = (): KindePlaceholder => loginGUID;

/**
*
*
* @returns Register URL Placeholder
*/
export const getKindeSignUpUrl = (): KindePlaceholder => registerGUID;

/**
*
*
* @returns Login URL Placeholder
*/
export const getKindeSignInUrl = (): KindePlaceholder => loginGUID;

/**
*
*
* @returns Light Mode Logo Placeholder
*/
export const getLogoUrl = (orgCode: OrgCode) => {
return getAssetUrl("logo", orgCode);
};

/**
*
*
* @returns Dark Mode Logo Placeholder
*/
export const getDarkModeLogoUrl = (orgCode: OrgCode) => {
return getAssetUrl("logo_dark", orgCode);
};

/**
*
*
* @returns SVG FavIcon Placeholder
*/
export const getSVGFavicon = (orgCode: OrgCode) => {
return getAssetUrl("favicon_svg", orgCode);
};

/**
*
*
* @returns Fallback FavIcon Placeholder
*/
export const getFallbackFavicon = (orgCode: OrgCode) => {
Expand All @@ -443,7 +443,6 @@ const coloursValid = (...colors: (string | undefined)[]) =>
const borderRadiusValid = (...radii: (string | undefined)[]) =>
radii.every(isValidBorderRadius) || undefined;


/**
* Sets custom properties for the Kinde Designer.
*
Expand Down

0 comments on commit 2736f56

Please sign in to comment.