Skip to content

Commit

Permalink
push
Browse files Browse the repository at this point in the history
  • Loading branch information
byeoon committed Oct 24, 2024
1 parent 8115177 commit 9fc3a5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ui/components/Codeblock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const styles = stylesheet.createThemedStyleSheet({
},
});

// iOS doesn't support the selectable property on RN.Text...
// iOS doesn't support the selectable property on RN.Text.
const InputBasedCodeblock = ({ style, children }: CodeblockProps) => <RN.TextInput editable={false} multiline style={[styles.codeBlock, style && style]} value={children} />
const TextBasedCodeblock = ({ selectable, style, children }: CodeblockProps) => <RN.Text selectable={selectable} style={[styles.codeBlock, style && style]}>{children}</RN.Text>

Expand Down
2 changes: 1 addition & 1 deletion src/ui/settings/pages/Developer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default function Developer() {
/>
</>}
</TableRowGroup>
<TableRowGroup title="Loader config">
<TableRowGroup title="Loader Config">
<TableSwitchRow
label="Load from custom url"
subLabel={"Load Opti from a custom endpoint."}
Expand Down

0 comments on commit 9fc3a5b

Please sign in to comment.