export function removeCitations()

in frontend/src/components/Answer/AnswerParser.tsx [22:24]


export function removeCitations(text: string): string {
  return text.replace(/\[[^\]]*\]/g, "");
}