Add getRelativeLink

This commit is contained in:
prototypa
2022-11-22 12:49:17 -05:00
parent 00ec087a4d
commit d546f9dbaa

View File

@ -55,7 +55,7 @@ export const getHomePermalink = () => {
};
/** */
export const getRelativelink = (link = "") => {
export const getRelativeLink = (link = "") => {
return createPath(basePathname, trimSlash(link));
}