Skip to content

Commit 223ec6b

Browse files
committed
Merge remote-tracking branch 'origin/development' into development
2 parents e4845f6 + b37dbb5 commit 223ec6b

File tree

3 files changed

+6
-22
lines changed

3 files changed

+6
-22
lines changed

ui/src/common/types/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export interface TypeSDKData {
44
appSdkInitialized: boolean;
55
}
66

7-
export interface jsonProps {
7+
export interface TypeJsonProps {
88
value: object;
99
onChange: (value: any) => void;
1010
}

ui/src/common/utils/index.ts

Lines changed: 0 additions & 19 deletions
This file was deleted.

ui/src/components/jsoneditor/index.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ import 'brace/mode/json';
55
import 'brace/theme/github';
66
import 'jsoneditor-react/es/editor.min.css';
77
import './index.css';
8-
import { jsonProps } from '../../common/types';
8+
import { TypeJsonProps } from '../../common/types';
99

10-
const JSONEditor: React.FC<jsonProps> = function ({ value = {}, onChange }) {
10+
const JSONEditor: React.FC<TypeJsonProps> = function ({
11+
value = {},
12+
onChange,
13+
}) {
1114
const jsonEditorRef = useRef<JsonEditor | null>(null);
1215

1316
useEffect(() => {

0 commit comments

Comments
 (0)