Skip to content

Commit 5bbb9fd

Browse files
committed
OLS-2722: adress comments from the finali review
1 parent 34d08ff commit 5bbb9fd

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,8 @@ In order to do so, they need to:
270270
"_meta": {
271271
"additionalFields": {
272272
"olsUi": {
273-
"id": "my-mcp/my-tool",
274-
},
273+
"id": "my-mcp/my-tool"
274+
}
275275
}
276276
}
277277
```

src/components/OlsToolUIs.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ export const OlsToolUI: React.FC<OlsToolUIProps> = ({ tool, toolUIComponent: Too
1717
</ErrorBoundary>
1818
);
1919

20-
type OlsUIToolsProps = {
20+
type OlsToolUIsProps = {
2121
entryIndex: number;
2222
};
2323

24-
export const OlsToolUIs: React.FC<OlsUIToolsProps> = ({ entryIndex }) => {
24+
export const OlsToolUIs: React.FC<OlsToolUIsProps> = ({ entryIndex }) => {
2525
const [toolUIMapping] = useToolUIMapping();
2626

2727
const toolsData: ImmutableMap<string, ImmutableMap<string, unknown>> = useSelector((s: State) =>

0 commit comments

Comments
 (0)