Skip to content

Commit

Permalink
Merge branch 'main' into blog-split-out-unrelated-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Jan 13, 2025
2 parents f4eb278 + b78451f commit 93f2d66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import comments from "@eslint-community/eslint-plugin-eslint-comments/configs";
// @ts-check
import eslint from "@eslint/js";
import comments from "@eslint-community/eslint-plugin-eslint-comments/configs";
import astro from "eslint-plugin-astro";
import jsdoc from "eslint-plugin-jsdoc";
import jsonc from "eslint-plugin-jsonc";
Expand Down
2 changes: 1 addition & 1 deletion src/components/blog/mdx/LabeledImages.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export interface LabeledImage {
alt: string;
description?: string;
original?: string;
src: { src: string } | string;
src: string | { src: string };
}
export interface Props {
Expand Down

0 comments on commit 93f2d66

Please sign in to comment.