79444127

Date: 2025-02-16 23:41:27
Score: 1.5
Natty:
Report link

I tried to use your code and I think your problem is when you used as try to use this example and it's will help you

type RadioOption = {
    value: string;
    label: string;
  };

  const requestTypeOptions: Array<RadioOption> = [
    { value: "question", label: "I have a question" },
    { value: "problem", label: "I have a problem" },
    { value: "complaint", label: "I have a complaint" },
  ];

  const allValues = requestTypeOptions.map((c) => c.value);
  console.log(allValues);
Reasons:
  • Blacklisted phrase (1.5): I have a question
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Elias Salom