We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42524db commit 65b4f6bCopy full SHA for 65b4f6b
src/constants.js
@@ -3,9 +3,9 @@ export const MODE_HYDRATE = 1 << 5;
3
/** Signifies this VNode suspended on the previous render */
4
export const MODE_SUSPENDED = 1 << 7;
5
/** Indicates that this node needs to be inserted while patching children */
6
-export const INSERT_VNODE = 1 << 16;
+export const INSERT_VNODE = 1 << 2;
7
/** Indicates a VNode has been matched with another VNode in the diff */
8
-export const MATCHED = 1 << 17;
+export const MATCHED = 1 << 1;
9
10
/** Reset all mode flags */
11
export const RESET_MODE = ~(MODE_HYDRATE | MODE_SUSPENDED);
0 commit comments