--- import { COMMUNITY_INVITE_URL } from "../../consts"; import { getIsRtlFromUrl } from "../../languages"; export interface Props { editHref: string; } const { editHref } = Astro.props; const { pathname } = Astro.url; const isRtl = getIsRtlFromUrl(pathname); // const isLangEN = getLanguageFromURL(pathname) === "en"; ---