feat(react/dialogs): fix broken class name

This commit is contained in:
Adorian Doran 2025-08-05 20:00:39 +03:00
parent 79c5d479fc
commit a4e6a964c9

View File

@ -11,7 +11,7 @@ interface FormCheckboxProps {
export default function FormCheckbox({ name, label, currentValue, onChange, hint }: FormCheckboxProps) { export default function FormCheckbox({ name, label, currentValue, onChange, hint }: FormCheckboxProps) {
return ( return (
<div className="form-check"> <div className="form-checkbox">
<label <label
className="form-check-label tn-checkbox" className="form-check-label tn-checkbox"
style={hint && { textDecoration: "underline dotted var(--main-text-color)" }} title={hint}> style={hint && { textDecoration: "underline dotted var(--main-text-color)" }} title={hint}>