Skip to content

Commit bc0a40f

Browse files
committed
test
1 parent 2161111 commit bc0a40f

File tree

2 files changed

+1
-26
lines changed

2 files changed

+1
-26
lines changed

src/backend/linkFiber.ts

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -11,42 +11,25 @@
1111

1212
//import typescript types
1313
import {
14-
<<<<<<< HEAD
15-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
16-
=======
1714

18-
>>>>>>> 52f9d4a32f499e676e8986eccb3e504c4859a3a7
1915
//tree
2016
Snapshot,
2117
//jump, pause, lock
2218
Mode,
2319

2420
ComponentData,
25-
<<<<<<< HEAD
26-
//array of state and component
27-
HookStates,
28-
//object with tree structure
29-
=======
3021
// array of state and component
3122
HookStates,
3223
// object with tree structure
33-
>>>>>>> 52f9d4a32f499e676e8986eccb3e504c4859a3a7
3424
Fiber,
3525
} from './types/backendTypes';
3626
//import function that creates a tree
3727
import Tree from './tree';
38-
<<<<<<< HEAD
39-
//passes data down to its components
40-
import componentActionsRecord from './masterState';
41-
// throttle returns a function that can be called any number of times (possibly in quick succession) but will only invoke the callback at most once every x ms
42-
// getHooksNames - helper function to grab the getters/setters from `elementType`
43-
=======
4428
//passes the data down to its components ?
4529
import componentActionsRecord from './masterState';
4630

4731
// throttle returns a function that can be called any number of times (possibly in quick succession) but will only invoke the callback at most once every x ms
4832
//getHooksNames - helper function to grab the getters/setters from `elementType`
49-
>>>>>>> 52f9d4a32f499e676e8986eccb3e504c4859a3a7
5033
import { throttle, getHooksNames } from './helpers';
5134
// import { Console } from 'console';
5235
import AtomsRelationship from '../app/components/AtomsRelationship';
@@ -69,12 +52,8 @@ let rtid = null;
6952
let recoilDomNode = {};
7053

7154
// Simple check for whether our target app uses Recoil
72-
<<<<<<< HEAD
73-
if (window['$recoilDebugStates']) {
74-
=======
7555
// can these be regular
7656
if (window[`$recoilDebugStates`]) {
77-
>>>>>>> 3c151d3be552bc7e569a3692841d2c7f9616aa72
7857
isRecoil = true;
7958
}
8059

@@ -104,11 +83,7 @@ if (window[`$recoilDebugStates`]) {
10483
function sendSnapshot(snap: Snapshot, mode: Mode): void {
10584
// Don't send messages while jumping or while paused
10685
if (mode.jumping || mode.paused) return;
107-
<<<<<<< HEAD
108-
// If there is no current tree creates a new one
109-
=======
11086
// If there is no current tree creates a new one
111-
>>>>>>> 52f9d4a32f499e676e8986eccb3e504c4859a3a7
11287
if (!snap.tree) {
11388
snap.tree = new Tree('root', 'root');
11489
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"outDir": "./src/extension/build/bundles/",
44
"module": "es6",
55
"target": "es5",
6-
"jsx": "react-jsx",
6+
"jsx": "react",
77
"removeComments": true,
88
"allowJs": true,
99
"allowSyntheticDefaultImports": true,

0 commit comments

Comments
 (0)