should always be disabled

This commit is contained in:
Vivian Phung 2024-05-01 18:23:39 -04:00
parent ddb54de49b
commit 6cbc87a7d1
No known key found for this signature in database

View File

@ -189,11 +189,9 @@ const CreateRepo = () => {
<Controller
name="isPrivate"
control={control}
render={({ field: { value, onChange } }) => (
render={({ }) => (
<Checkbox
label="Make this repo private"
checked={value}
onCheckedChange={onChange}
disabled={true}
/>
)}