@@ -42,7 +42,7 @@ export const RoundValidationSchema = yup.object().shape({
4242 . required ( "You must select a support type." )
4343 . notOneOf (
4444 [ "Select what type of input." ] ,
45- "You must select a support type."
45+ "You must select a support type." ,
4646 ) ,
4747 info : yup
4848 . string ( )
@@ -61,7 +61,7 @@ export const RoundValidationSchema = yup.object().shape({
6161 /*Matches www.example.com, example.com, http and https prefixes, but not www.invalid */
6262 . matches (
6363 / ^ ( h t t p : \/ \/ | h t t p s : \/ \/ | i p f s : \/ \/ ) ? \S + \. \S + $ | ^ ( i p f s : \/ \/ ) \S + $ / ,
64- "Must be a valid URL"
64+ "Must be a valid URL" ,
6565 )
6666 . required ( "You must provide a valid URL." ) ,
6767 } ) ,
@@ -883,7 +883,7 @@ function SupportTypeDropdown(props: {
883883 < SupportTypeButton
884884 errors = { props . errors }
885885 supportType = { props . supportTypes . find (
886- ( supportType ) => supportType . name === field . value
886+ ( supportType ) => supportType . name === field . value ,
887887 ) }
888888 />
889889 < Transition
@@ -904,7 +904,7 @@ function SupportTypeDropdown(props: {
904904 active
905905 ? "text-white bg-indigo-600"
906906 : "text-gray-900" ,
907- "relative cursor-default select-none py-2 pl-3 pr-9"
907+ "relative cursor-default select-none py-2 pl-3 pr-9" ,
908908 )
909909 }
910910 value = { type . name }
@@ -916,7 +916,7 @@ function SupportTypeDropdown(props: {
916916 < span
917917 className = { classNames (
918918 selected ? "font-semibold" : "font-normal" ,
919- "ml-3 block truncate"
919+ "ml-3 block truncate" ,
920920 ) }
921921 >
922922 { type . name }
@@ -927,7 +927,7 @@ function SupportTypeDropdown(props: {
927927 < span
928928 className = { classNames (
929929 active ? "text-white" : "text-indigo-600" ,
930- "absolute inset-y-0 right-0 flex items-center pr-4"
930+ "absolute inset-y-0 right-0 flex items-center pr-4" ,
931931 ) }
932932 >
933933 < CheckIcon
@@ -939,7 +939,7 @@ function SupportTypeDropdown(props: {
939939 </ >
940940 ) }
941941 </ Listbox . Option >
942- )
942+ ) ,
943943 ) }
944944 </ Listbox . Options >
945945 </ Transition >
@@ -1074,7 +1074,7 @@ function RoundType(props: {
10741074 ? "bg-indigo-600 border-transparent"
10751075 : "bg-white border-gray-300" ,
10761076 active ? "ring-2 ring-offset-2 ring-indigo-500" : "" ,
1077- "h-4 w-4 mt-1 rounded-full border flex items-center justify-center"
1077+ "h-4 w-4 mt-1 rounded-full border flex items-center justify-center" ,
10781078 ) }
10791079 aria-hidden = "true"
10801080 >
@@ -1103,7 +1103,7 @@ function RoundType(props: {
11031103 ? "bg-indigo-600 border-transparent"
11041104 : "bg-white border-gray-300" ,
11051105 active ? "ring-2 ring-offset-2 ring-indigo-500" : "" ,
1106- "h-4 w-4 mt-1 rounded-full border flex items-center justify-center"
1106+ "h-4 w-4 mt-1 rounded-full border flex items-center justify-center" ,
11071107 ) }
11081108 aria-hidden = "true"
11091109 >
0 commit comments