diff --git a/client/src/pages/AuctionGuide.tsx b/client/src/pages/AuctionGuide.tsx
index 803ee57..68089b2 100644
--- a/client/src/pages/AuctionGuide.tsx
+++ b/client/src/pages/AuctionGuide.tsx
@@ -8,7 +8,8 @@ import {
Target,
Gavel,
Home,
- BookOpen
+ BookOpen,
+ X
} from "lucide-react";
export default function AuctionGuide() {
@@ -32,28 +33,14 @@ export default function AuctionGuide() {
-
-
- {/* Triangle indicator */}
-
-
-
-
-
-
+
diff --git a/client/src/pages/Auctions.tsx b/client/src/pages/Auctions.tsx
index e082a49..ed6f346 100644
--- a/client/src/pages/Auctions.tsx
+++ b/client/src/pages/Auctions.tsx
@@ -99,10 +99,12 @@ export default function Auctions() {
const { data: auctions = [], isLoading: auctionsLoading } = useQuery({
queryKey: ["/api/auctions"],
+ staleTime: 30000, // 30초 동안 캐시 유지
});
const { data: mediaOutlets = [] } = useQuery({
queryKey: ["/api/media-outlets"],
+ staleTime: 60000, // 1분 동안 캐시 유지
});
const bidMutation = useMutation({