From 11ee6ace1b2043041d46a9282a0f3c7b6cd55171 Mon Sep 17 00:00:00 2001 From: kimjaehyeon0101 <47347352-kimjaehyeon0101@users.noreply.replit.com> Date: Tue, 30 Sep 2025 02:04:36 +0000 Subject: [PATCH] Fix auction guide page navigation and visual bug Update AuctionGuide.tsx to fix a visual bug with the triangle indicator and implement a functional back navigation using `window.history.back()` when the book icon is clicked. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 069d4324-6c40-4355-955e-c714a50de1ea Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/069d4324-6c40-4355-955e-c714a50de1ea/UXwUwik --- .replit | 4 ++++ client/src/pages/AuctionGuide.tsx | 17 ++++++++++------- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.replit b/.replit index b0526f5..52d9378 100644 --- a/.replit +++ b/.replit @@ -22,6 +22,10 @@ externalPort = 3002 localPort = 37531 externalPort = 3001 +[[ports]] +localPort = 40661 +externalPort = 3003 + [[ports]] localPort = 43349 externalPort = 3000 diff --git a/client/src/pages/AuctionGuide.tsx b/client/src/pages/AuctionGuide.tsx index decd01e..6b278f9 100644 --- a/client/src/pages/AuctionGuide.tsx +++ b/client/src/pages/AuctionGuide.tsx @@ -12,6 +12,10 @@ import { } from "lucide-react"; export default function AuctionGuide() { + const handleGoBack = () => { + window.history.back(); + }; + return (