File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
apps/webapp/app/components/integrations Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -127,16 +127,17 @@ export function ConnectToOAuthForm({
127
127
id = "hasCustomClient"
128
128
label = "Use my OAuth App"
129
129
variant = "simple/small"
130
- disabled = { requiresCustomOAuthApp }
130
+ readOnly = { requiresCustomOAuthApp }
131
131
onChange = { ( checked ) => setUseMyOAuthApp ( checked ) }
132
132
{ ...conform . input ( hasCustomClient , { type : "checkbox" } ) }
133
133
defaultChecked = { requiresCustomOAuthApp }
134
134
/>
135
135
{ useMyOAuthApp && (
136
136
< div className = "ml-6 mt-2" >
137
137
< Paragraph variant = "small" className = "mb-2" >
138
- Set the callback url to < CodeBlock code = { callbackUrl } showLineNumbers = { false } />
138
+ Set the callback url to
139
139
</ Paragraph >
140
+ < CodeBlock code = { callbackUrl } showLineNumbers = { false } />
140
141
< div className = "flex flex-col gap-2" >
141
142
< div className = "flex gap-2" >
142
143
< InputGroup fullWidth >
You can’t perform that action at this time.
0 commit comments