Skip to content

Commit

Permalink
Updated import order for Landing.tsx and ApiResources.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
IanWearsHat committed Oct 10, 2024
1 parent a23be66 commit 0063909
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import { PortableText } from "@portabletext/react";
import { client } from "@/lib/sanity/client";
import imageUrlBuilder from "@sanity/image-url";

import styles from "./ApiResources.module.scss";

import ResourceCard from "../../components/ResourceCard/ResourceCard";
import { getResources } from "../../getResources";
import { client } from "@/lib/sanity/client";

import ResourceCard from "../../components/ResourceCard/ResourceCard";
import HeadingCard from "../../components/HeadingCard/HeadingCard";

import styles from "./ApiResources.module.scss";

async function ApiResources() {
const resources = await getResources("api");
return (
Expand Down
2 changes: 1 addition & 1 deletion apps/site/src/views/Resources/sections/Landing/Landing.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from "next/image";
import resourcesTitle from "@/assets/images/resources-title.svg";

import styles from "./Landing.module.scss";
import resourcesTitle from "@/assets/images/resources-title.svg";

function Landing() {
return (
Expand Down

0 comments on commit 0063909

Please sign in to comment.