Skip to content

Commit 4203e96

Browse files
committed
revised functions in diff.tsx
1 parent 786b94d commit 4203e96

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/app/components/Diff.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ interface DiffProps {
1313
* @param props props from maincontainer
1414
* @returns a diff tree or a string stating no state changes have happened
1515
*/
16-
// LL added Record<string, unknown> for return statement on function
17-
function Diff(props: DiffProps): Record<string, unknown> {
16+
function Diff(props: DiffProps) {
1817
const { snapshot, show } = props;
1918
const [mainState] = useStoreContext();
2019
const { currentTab, tabs } = mainState; // k/v pairs of mainstate store object being created

0 commit comments

Comments
 (0)