Skip to content

Commit

Permalink
feat: add Url suffix to favIcon helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRivers committed Jan 15, 2025
1 parent 424c864 commit 6fa2dbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -423,15 +423,15 @@ export const getDarkModeLogoUrl = (orgCode?: OrgCode) => {
*
* @returns SVG FavIcon Placeholder
*/
export const getSVGFavicon = (orgCode?: OrgCode) => {
export const getSVGFaviconUrl = (orgCode?: OrgCode) => {
return getAssetUrl("favicon_svg", orgCode);
};

/**
*
* @returns Fallback FavIcon Placeholder
*/
export const getFallbackFavicon = (orgCode?: OrgCode) => {
export const getFallbackFaviconUrl = (orgCode?: OrgCode) => {
return getAssetUrl("favicon_fallback", orgCode);
};

Expand Down

0 comments on commit 6fa2dbe

Please sign in to comment.