"use client"; import "./resolution-choice.css"; export default function ResolutionChoice({ title, busy, onAnswer, }: { title: string; busy: boolean; onAnswer: (resolved: boolean) => void; }) { return (
Your answer is needed

Is it fixed?

{title}

Try the affected content in Grizzlyflix, then choose:

{busy &&

Saving your answer…

}
); }