Skip to content

Commit

Permalink
remove a few console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
emma-sg committed Feb 6, 2025
1 parent 10bc5ac commit d0cdcb1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ export class CollectionEdit extends BtrixElement {
this.dirty = false;
this.errorTab = null;
this.blobIsLoaded = false;
console.log("BBBBB");
this.selectedSnapshot = this.collection?.thumbnailSource ?? null;
this.defaultThumbnailName =
(this.collection?.defaultThumbnailName as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import { tw } from "@/utils/tailwind";

export default function renderGeneral(this: CollectionEdit) {
if (!this.collection) return;
console.log(this.thumbnailIsValid);
return html`<sl-input
class="with-max-help-text"
name="name"
Expand Down Expand Up @@ -262,12 +261,6 @@ function renderPageThumbnail(
const enabled =
(!!this.selectedSnapshot && this.blobIsLoaded) || !!initialPath;

console.log({
selectedSnapshot: this.selectedSnapshot,
blobIsLoaded: !!this.blobIsLoaded,
initialPath: !!initialPath,
});

return html`
<button
class=${clsx(
Expand Down

0 comments on commit d0cdcb1

Please sign in to comment.