Skip to content

Commit 4a7565b

Browse files
committed
snap: fix
1 parent 74bf77a commit 4a7565b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

packages/plugin-core/src/components/lookup/LookupProvider.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ export class LookupProvider {
5050
querystring,
5151
"note"
5252
);
53-
const notesData = resp.data as Note[];
5453
L.info({ ctx: ctx + ":engine:query:post" });
5554
//const pickerItems = notesData.map((ent) => ({ label: ent.title }));
5655
picker.items = resp.data;
@@ -84,7 +83,7 @@ export class LookupProvider {
8483
.write({ username: "DUMMY" }, new Note({ title: value, fname }), {
8584
newNode: true,
8685
})
87-
.then((resp) => {
86+
.then(() => {
8887
L.info({ ctx: `${ctx}:write:done`, value });
8988
});
9089
} else {

packages/plugin-core/tsconfig.build.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
"outDir": "out",
55
"rootDir": "src"
66
},
7-
"exclude": ["node_modules", "lib", "local", ".vscode-test", "out"]
8-
7+
"exclude": ["node_modules", "lib", "local", ".vscode-test", "out"]
98
}

0 commit comments

Comments
 (0)