Skip to content

Commit 583d7e6

Browse files
committed
Update Imports
1 parent 9d2dbd1 commit 583d7e6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/AssetCard.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ interface Props {
33
asset: Asset;
44
}
55
import { Image } from "astro:assets";
6-
import { ASSET_URL, type Asset } from "@/lib/assets";
6+
import { ASSET_URL, type Asset } from "@/lib/assets.ts";
77
import { Ban, CircleAlert, UserRoundPlus } from "lucide-astro";
88
99
const { asset } = Astro.props;

src/pages/apps.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
import AssetCard from "@/components/AssetCard.astro";
33
import Layout from "@/layouts/Main.astro";
4-
import { ASSET_URL, type Asset } from "@/lib/assets";
4+
import { ASSET_URL, type Asset } from "@/lib/assets.ts";
55
import { PlusCircle } from "lucide-astro";
66
77
export const prerender = false;

src/pages/games.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
import AssetCard from "@/components/AssetCard.astro";
33
import Layout from "@/layouts/Main.astro";
4-
import { ASSET_URL, type Asset } from "@/lib/assets";
4+
import { ASSET_URL, type Asset } from "@/lib/assets.ts";
55
import { PlusCircle } from "lucide-astro";
66
77
export const prerender = false;

0 commit comments

Comments
 (0)