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