Skip to content

Commit

Permalink
Remove stray console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
ubipo committed Dec 1, 2023
1 parent b40eb99 commit 52bdefb
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/lib/components/image.svelte
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
<script lang="ts">
import type { ImageMeta } from "$lib/service/content/imageMeta";
import type { ImageMeta } from "$lib/service/markdown/imageMeta";
export let href: string
export let title: string | undefined = undefined
export let text: string
export let meta: ImageMeta | undefined = undefined
export let placeholder: string | undefined = undefined
{
if (href && href.endsWith("ewam-with-recognition.webp")) {
console.log(`image.svelte: href = ${href}`)
}
}
const [containerStyle, imgStyle] = (() => {
if (meta == undefined) return ["", ""]
Expand Down

0 comments on commit 52bdefb

Please sign in to comment.