From 16c1096e18513b7cb30ad36bd6169328155379f0 Mon Sep 17 00:00:00 2001 From: Jovan Lanutan Date: Fri, 28 Aug 2026 11:56:13 +0800 Subject: [PATCH] Remove unused import from content-collections.mdx This PR removes the unused `file` import from a documentation code example. While `file` is used in other examples below, it is not used in this particular example. Importing `file` here is therefore unnecessary and may confuse readers about whether it is required for this example. This change does not affect fuctionality. --- src/content/docs/en/guides/content-collections.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/en/guides/content-collections.mdx b/src/content/docs/en/guides/content-collections.mdx index eef8f9706ca4a..7875326614a7b 100644 --- a/src/content/docs/en/guides/content-collections.mdx +++ b/src/content/docs/en/guides/content-collections.mdx @@ -136,7 +136,7 @@ Each individual collection configures: import { defineCollection } from 'astro:content'; // 2. Import loader(s) -import { glob, file } from 'astro/loaders'; +import { glob } from 'astro/loaders'; // 3. Import Zod import { z } from 'astro/zod';