Skip to content

Commit dcd1de0

Browse files
style(secrets): apply linter auto-fixes to scope dropdown
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9069ea1 commit dcd1de0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/components/pages/secrets-store/create/secret-create-page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export const SecretCreatePage = () => {
153153
<MultiSelectContent>
154154
<MultiSelectList>
155155
{SCOPE_OPTIONS.map((option) => (
156-
<MultiSelectItem key={option.value} value={option.value} label={option.label}>
156+
<MultiSelectItem key={option.value} label={option.label} value={option.value}>
157157
<span className="flex items-center gap-2">
158158
<option.icon className="size-4" />
159159
{option.label}

frontend/src/components/pages/secrets-store/edit/secret-edit-page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export const SecretEditPage = () => {
200200
<MultiSelectContent>
201201
<MultiSelectList>
202202
{SCOPE_OPTIONS.map((option) => (
203-
<MultiSelectItem key={option.value} value={option.value} label={option.label}>
203+
<MultiSelectItem key={option.value} label={option.label} value={option.value}>
204204
<span className="flex items-center gap-2">
205205
<option.icon className="size-4" />
206206
{option.label}

0 commit comments

Comments
 (0)