Skip to content

Commit

Permalink
Fix filename case
Browse files Browse the repository at this point in the history
  • Loading branch information
vladh committed Mar 5, 2025
1 parent bf44382 commit f5cfec3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/ArticleList.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dayjs.extend(utc);
import type { SanityDocument } from "@sanity/client";
import { sanityClient } from "sanity:client";
import { urlForImage } from '../sanity-util.ts';
import { urlForImage } from '../sanityUtil.ts';
const ARTICLES_QUERY = `*[_type == "article"]|order(publishDateTime desc){
_id,
Expand Down
10 changes: 5 additions & 5 deletions src/pages/blog/[slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ dayjs.extend(utc);
import type { SanityDocument } from "@sanity/client";
import { sanityClient } from "sanity:client";
import { PortableText } from "astro-portabletext";
import { urlForImage } from '../../sanity-util.ts';
import Block from '../../portable-text-components/Block.astro';
import CaptionedImage from '../../portable-text-components/CaptionedImage.astro';
import YoutubeEmbed from '../../portable-text-components/YoutubeEmbed.astro';
import VideoEmbed from '../../portable-text-components/VideoEmbed.astro';
import { urlForImage } from '../../sanityUtil.ts';
import Block from '../../portableTextComponents/Block.astro';
import CaptionedImage from '../../portableTextComponents/CaptionedImage.astro';
import YoutubeEmbed from '../../portableTextComponents/YoutubeEmbed.astro';
import VideoEmbed from '../../portableTextComponents/VideoEmbed.astro';
const ARTICLE_QUERY = `*[_type == "article" && slug.current == $slug][0]{
_id,
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// © 2024 Vlad-Stefan Harbuz <vlad@vlad.website>
// SPDX-License-Identifier: Apache-2.0
import { urlForImage } from '../sanity-util.ts';
import { urlForImage } from '../sanityUtil.ts';
const { node } = Astro.props;
---

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit f5cfec3

Please sign in to comment.