mirror of
https://github.com/Sevichecc/raycast-akkoma-extension.git
synced 2025-04-29 22:29:30 +08:00
refactor: move title to label
This commit is contained in:
parent
68a73f58d6
commit
783d78e3da
1 changed files with 2 additions and 3 deletions
|
@ -146,13 +146,12 @@ export default function SimpleCommand(props: CommandProps) {
|
|||
{props.children}
|
||||
<Form.Checkbox
|
||||
id="markdown"
|
||||
title="Markdown"
|
||||
label=""
|
||||
label="Markdown"
|
||||
value={state.isMarkdown}
|
||||
onChange={(value) => setState((prevState) => ({ ...prevState, isMarkdown: value }))}
|
||||
storeValue
|
||||
/>
|
||||
<Form.Checkbox id="sensitive" title="Sensitive" label="" value={state.sensitive} onChange={handleCw} storeValue />
|
||||
<Form.Checkbox id="sensitive" label="Sensitive" value={state.sensitive} onChange={handleCw} storeValue />
|
||||
</Form>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue