From dfd0979547b431f9c5dcded432dba5c3bbdc6b6b Mon Sep 17 00:00:00 2001 From: Tim Howitz Date: Tue, 29 Apr 2025 09:12:53 +0100 Subject: [PATCH] Fixed centring of next and prev shop buttons --- src/app/shop/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 0684fb5..ca2bd7b 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,10 +1,10 @@ "use client"; -import { Dispatch, SetStateAction, useCallback, useState } from "react"; +import { Dispatch, SetStateAction, useCallback, useState } from 'react'; -import Artifact from "@appTypes/Artifact"; -import { Currency } from "@appTypes/StoreModel"; -import Sidebar from "@components/Sidebar"; -import { useStoreState } from "@hooks/store"; +import Artifact from '@appTypes/Artifact'; +import { Currency } from '@appTypes/StoreModel'; +import Sidebar from '@components/Sidebar'; +import { useStoreState } from '@hooks/store'; // Artifacts Data const artifacts: Artifact[] = [ @@ -255,7 +255,7 @@ export default function Shop() { {/* Pagination Footer */} -