export const getPlaintextLyrics = (lyrics: { text: string }[]) => {
  return lyrics.map((l) => l.text).join('');
};
