Skip to content

Commit 4876ed0

Browse files
committed
incorporate typescript
1 parent 08c8a85 commit 4876ed0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/AccTestComponent/DescribeRenderer/DescribeRenderer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const DescribeRenderer = ({
3434
}
3535
};
3636

37-
return describeBlocks.allIds.map((id: string , i: number) => (
37+
return describeBlocks.allIds.map((id: string, i: number) => (
3838
<Draggable
3939
key={id}
4040
draggableId={id}

src/utils/accTypes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ export interface ItStatements {
1919
byId: Object;
2020
allIds: Object;
2121
}
22-
2322
export interface Action {
2423
type: string;
2524
id?: string;
@@ -33,5 +32,6 @@ export interface Action {
3332
fileName?: string;
3433
filePath?: string;
3534
describeBlocks: any[];
36-
35+
standardTag: string;
36+
catTag: string;
3737
}

0 commit comments

Comments
 (0)