remove console logs
This commit is contained in:
parent
2e978d264b
commit
980e92d08a
|
@ -70,10 +70,6 @@ const AssistantManager = ({
|
||||||
app.metadataCache.getBacklinksForFile(openFile)
|
app.metadataCache.getBacklinksForFile(openFile)
|
||||||
.data,
|
.data,
|
||||||
).map((file) => file);
|
).map((file) => file);
|
||||||
console.log(
|
|
||||||
'file metadata cache',
|
|
||||||
app.metadataCache.getCache(openFile.path)?.links,
|
|
||||||
);
|
|
||||||
const currentFile = openFile.path;
|
const currentFile = openFile.path;
|
||||||
const filesToUpload = new Set([
|
const filesToUpload = new Set([
|
||||||
currentFile,
|
currentFile,
|
||||||
|
|
|
@ -110,11 +110,6 @@ const Chatbox = ({ annotationFiles, isResponding, messages }: ChatboxProps) => {
|
||||||
|
|
||||||
const handleAnnotationClick = () => {
|
const handleAnnotationClick = () => {
|
||||||
// open new tab and then navigate to fil
|
// open new tab and then navigate to fil
|
||||||
console.log(
|
|
||||||
'handleAnnotationClick',
|
|
||||||
app,
|
|
||||||
fileName,
|
|
||||||
);
|
|
||||||
if (app && fileName) {
|
if (app && fileName) {
|
||||||
const file =
|
const file =
|
||||||
app.vault.getAbstractFileByPath(
|
app.vault.getAbstractFileByPath(
|
||||||
|
|
Loading…
Reference in New Issue