From f2f39f4c223391dda24f2d4273ebd87ddd885ef9 Mon Sep 17 00:00:00 2001 From: mzivil <158518982+mzivil@users.noreply.github.com> Date: Sat, 3 Feb 2024 16:42:10 -0500 Subject: [PATCH] fix clicks on billing types label not toggling correct radio Currently, all the billing types radios are being assigned the same "billingType" id, so clicking on any of the labels always selects the monthly one. If you inspect the HTML, all the billing type labels have 'for="billingType"' which is how the HTML knows which input to select. We have to keep the "name" attribute the same because that's how the input values are linked to the billingType form field. To fix, we explicitly assign the "id" prop for each radio so that the