Fix a build break due to merge conflicts (#1082)
PR #1075 added a new EdgeType, and #1080 added a new field to EdgeTypes. Both PRs merged and this broke the build. This very trivial commit fixes the build breakage in a noncontroversial way (copies the placeholder edge description used for every other edge over). Test plan: `yarn test` passes.
This commit is contained in:
parent
466d33e4e6
commit
c6afe5f9d5
|
@ -153,6 +153,7 @@ const reactsRocketEdgeType = Object.freeze({
|
|||
// TODO(#811): Probably change this to 0
|
||||
defaultBackwardWeight: 1 / 32,
|
||||
prefix: E.Prefix.reactsRocket,
|
||||
description: "TODO: Add a description for this EdgeType",
|
||||
});
|
||||
|
||||
const edgeTypes = Object.freeze([
|
||||
|
|
Loading…
Reference in New Issue