export const removeBackticks = (str: string) => {
    if (str && typeof str === "string") return str.replace(/`/g, "");
  
    return str;
};