Skip to content

Commit 2a474d3

Browse files
authored
Merge branch 'master' into fix-import
2 parents e827717 + 5acfb14 commit 2a474d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/remix-ui/plugin-manager/src/lib/components/LocalPluginForm.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ function LocalPluginForm ({ closeModal, visible, pluginManager }: LocalPluginFor
191191
type="radio"
192192
name="location"
193193
value="sidePanel"
194-
id="sidePanel"
194+
id="none"
195195
data-id='localPluginRadioButtonsidePanel'
196196
checked={location === 'sidePanel'}
197197
onChange={(e) => setLocation(e.target.value as 'sidePanel' | 'mainPanel' | 'none')} />
@@ -203,7 +203,7 @@ function LocalPluginForm ({ closeModal, visible, pluginManager }: LocalPluginFor
203203
type="radio"
204204
name="location"
205205
value="mainPanel"
206-
id="mainPanel"
206+
id="none"
207207
data-id='localPluginRadioButtonmainPanel'
208208
checked={location === 'mainPanel'}
209209
onChange={(e) => setLocation(e.target.value as 'sidePanel' | 'mainPanel' | 'none')} />

0 commit comments

Comments
 (0)