Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
abrenneke committed Mar 22, 2024
1 parent c9ca295 commit 238e0a4
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions packages/app/src/components/SettingsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,16 +141,17 @@ export const GeneralSettingsPage: FC = () => {
{() => (
<>
<Toggle
id="check-for-updates"
isChecked={preservePortTextCase}
onChange={(e) => {
setPreservePortTextCase(e.target.checked);
}}
/>
id="check-for-updates"
isChecked={preservePortTextCase}
onChange={(e) => {
setPreservePortTextCase(e.target.checked);
}}
/>
<HelperMessage>
This WILL preserve the text fromat of the node port names. e.g. `newInputPort` will be shown instead of `NEWINPUTPORT` when enabled
This WILL preserve the text format of the node port names. e.g. `newInputPort` will be shown instead of
`NEWINPUTPORT` when enabled
</HelperMessage>
</>
</>
)}
</Field>
<Field name="recording-speed" label="Recording delay between chats (ms)">
Expand Down

0 comments on commit 238e0a4

Please sign in to comment.