Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
hackheim-web | 80d7c65 | Commit Preview URL Branch Preview URL |
Oct 22 2025, 06:13 PM |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting
| name: string; | ||
| logo?: ImageMetadata; | ||
| logoAlt?: string; | ||
| url?: string; | ||
| description?: string; | ||
| }>; | ||
| logoSize?: "sm" | "md" | "lg"; | ||
| }>; | ||
| sponsors?: Array<{ | ||
| name: string; | ||
| logo?: ImageMetadata; | ||
| logoAlt?: string; |
There was a problem hiding this comment.
Import ImageMetadata for sponsor props
Sponsorer.astro types each sponsor’s logo as ImageMetadata, but the file never imports that type from astro. TypeScript will emit Cannot find name 'ImageMetadata' when running astro check or pnpm build, preventing builds from succeeding. Add import type { ImageMetadata } from "astro"; alongside the existing imports so the props interface resolves.
Useful? React with 👍 / 👎.
No description provided.