Skip to content

Commit

Permalink
delete logs
Browse files Browse the repository at this point in the history
  • Loading branch information
crkos committed Jan 8, 2024
1 parent e1d49fc commit 73e0811
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/@/components/BookmarkForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import {
CommandInput,
CommandItem,
} from './ui/Command.tsx';
import { getBookmarksMetadata, saveLinksInCache } from '../lib/cache.ts';
import { saveLinksInCache } from '../lib/cache.ts';

let HAD_PREVIOUS_SESSION = false;
let configured = false;
Expand Down Expand Up @@ -202,7 +202,6 @@ const BookmarkForm = () => {
}
}
}
console.log(await getBookmarksMetadata());
} catch (error) {
console.error(error);
}
Expand Down
1 change: 0 additions & 1 deletion src/@/lib/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ export async function deleteBookmarkMetadata(id: string | undefined) {
export async function saveLinksInCache(baseUrl: string) {
try {
const links = await getLinksFetch(baseUrl);
console.log(links)
const linksResponse: bookmarkMetadata[] = links.response;

// Create a map to track which bookmarks are still present on the server
Expand Down

0 comments on commit 73e0811

Please sign in to comment.