We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20f2d3e commit eb8741dCopy full SHA for eb8741d
src/pages/speaker/[slug].astro
@@ -2,7 +2,7 @@
2
import { getCollection, getEntries } from "astro:content";
3
import Layout from "../../layouts/Layout.astro";
4
import Prose from "../../components/prose/prose.astro";
5
-import { Image, Picture } from "astro:assets";
+import { Image } from "astro:assets";
6
import Markdown from "@ui/Markdown.astro";
7
import Headline from "@ui/Headline.astro";
8
import { getCachedImage } from "../../image-cache";
@@ -31,7 +31,7 @@ export async function getStaticPaths() {
31
try {
32
avatar = await getCachedImage(entry.data.avatar);
33
} catch (err) {
34
- console.log(err);
+ console.log("Error with avatar: ",err);
35
avatar = null;
36
}
37
0 commit comments