Skip to content

Commit 55597a6

Browse files
authored
Merge pull request #60 from open-rpc/fix/remove-appbar-color-override
Fix/remove appbar color override
2 parents 5c333a6 + fb2f0cb commit 55597a6

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/containers/Inspector.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const Inspector: React.FC<IProps> = (props) => {
131131

132132
return (
133133
<>
134-
<AppBar position="static" elevation={0} color="default">
134+
<AppBar position="static" elevation={0}>
135135
<Toolbar>
136136
<img
137137
height="30"

src/containers/JSONRPCRequest.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ const JSONRPCRequest: React.FC<IProps> = (props) => {
2424

2525
function handleEditorDidMount(_: any, editor: any) {
2626
editorRef.current = editor;
27-
// Now you can use the instance of monaco editor
28-
// in this component whenever you want
2927
const modelName = props.openrpcMethodObject ? props.openrpcMethodObject.name : "inspector";
3028
const modelUriString = `inmemory://${modelName}.json`;
3129
monaco

0 commit comments

Comments
 (0)