Skip to content

Commit

Permalink
Fix typo in page title
Browse files Browse the repository at this point in the history
  • Loading branch information
Zwyx committed Apr 18, 2024
1 parent 7805a1a commit eb008cb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/routes/collections.all.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import {json, type LoaderFunctionArgs} from '@shopify/remix-oxygen';
import {useLoaderData, Link, type MetaFunction} from '@remix-run/react';
import {Link, useLoaderData, type MetaFunction} from '@remix-run/react';
import {
Pagination,
getPaginationVariables,
Image,
Money,
Pagination,
getPaginationVariables,
} from '@shopify/hydrogen';
import {json, type LoaderFunctionArgs} from '@shopify/remix-oxygen';
import type {ProductItemFragment} from 'storefrontapi.generated';
import {useVariantUrl} from '~/lib/variants';

export const meta: MetaFunction<typeof loader> = () => {
return [{title: `Hydrogen | Procuts`}];
return [{title: `Hydrogen | Products`}];
};

export async function loader({request, context}: LoaderFunctionArgs) {
Expand Down

0 comments on commit eb008cb

Please sign in to comment.