Navigation Menu

Skip to content

Commit

Permalink
fix(seeds): update replace merge strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinslin committed Oct 20, 2020
1 parent 56ee6c4 commit a02e08a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/seeds-core/src/base.ts
Expand Up @@ -101,7 +101,7 @@ export abstract class DendronSeed<
body = [resp.data.body, "\n", note.body].join("\n");
break;
case "replace":
body = resp.data.body;
body = note.body;
break;
default:
throw Error(`unknown merge strategy: ${mergeStrategy}`);
Expand Down

0 comments on commit a02e08a

Please sign in to comment.