Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Pages/EmailPreferences/EmailPreferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export default function EmailPreferencesPage(props) {
className="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600"
onChange={() => setIsOptedIntoEmails(true)}
/>
<label for="default-radio-1" className="ms-2 text-sm font-medium text-gray-900 dark:text-gray-300">
<label htmlFor="default-radio-1" className="ms-2 text-sm font-medium text-gray-900 dark:text-gray-300">
{' '}I would like to continue to recieve club update emails from SCE
</label>
</div>
Expand All @@ -130,7 +130,7 @@ export default function EmailPreferencesPage(props) {
className="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600"
onChange={() => setIsOptedIntoEmails(false)}
/>
<label for="default-radio-2" className="ms-2 text-sm font-medium text-gray-900 dark:text-gray-300">
<label htmlFor="default-radio-2" className="ms-2 text-sm font-medium text-gray-900 dark:text-gray-300">
{' '}No thanks, I would like to unsubscribe from all emails (best choice)
</label>
</div>
Expand Down