Skip to content

Commit

Permalink
chore: capitalise RadioButtonProps
Browse files Browse the repository at this point in the history
  • Loading branch information
zz-hh-aa committed Nov 7, 2024
1 parent 1971968 commit 18fc750
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/ui/RadioButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";
import { UseFormRegister, Path } from "react-hook-form";
import { Calculation } from "@/app/schemas/calculationSchema";

interface radioButtonProps {
interface RadioButtonProps {
id: string;
value: string;
label: string;
Expand All @@ -11,7 +11,7 @@ interface radioButtonProps {
error?: string;
}

const RadioButton: React.FC<radioButtonProps> = ({
const RadioButton: React.FC<RadioButtonProps> = ({
id,
value,
label,
Expand Down

0 comments on commit 18fc750

Please sign in to comment.