remove console logs

This commit is contained in:
Maxime Cannoodt 2022-06-29 14:32:48 +02:00
parent 03cc855a1c
commit 2933de4bac
3 changed files with 0 additions and 3 deletions

View File

@ -22,7 +22,6 @@ export class NoteSharingService {
mdText = this.sanitizeNote(mdText);
const cryptData = encryptMarkdown(mdText);
const res = await this.postNote(cryptData.ciphertext, cryptData.hmac);
console.log(res);
res.view_url += `#${cryptData.key}`;
console.log(`Note shared: ${res.view_url}`);
return res;

View File

@ -59,7 +59,6 @@ const HighlightExtension = {
name: 'highlight',
level: 'inline',
start(src: string) {
// console.log(src);
return src.match(/==/)?.index;
},
tokenizer(src: string) {

View File

@ -3,7 +3,6 @@
export let start: number;
export let items: any;
console.log(items);
</script>
<!-- Styling is taken care of by Tailwind Typography plugin -->