diff --git a/src/features/notification/ui/notification-sse-provider.tsx b/src/features/notification/ui/notification-sse-provider.tsx index 85b5a6ac..2baa90f2 100644 --- a/src/features/notification/ui/notification-sse-provider.tsx +++ b/src/features/notification/ui/notification-sse-provider.tsx @@ -44,9 +44,9 @@ function getPayloadId(payload: NotificationPayload | null): string | null { return null; } -function getPayloadTitle(payload: NotificationPayload | null): string | null { +function getPayloadMessage(payload: NotificationPayload | null): string | null { if (!payload) return null; - const candidate = payload.title; + const candidate = payload.message; return typeof candidate === "string" && candidate.length > 0 ? candidate : null; } @@ -117,8 +117,8 @@ export function NotificationSseProvider() { if (payload) { const didPrepend = prependNotification(queryClient, payload); - const title = getPayloadTitle(payload); - showToast.info(title ?? "새 알림이 도착했어요."); + const message = getPayloadMessage(payload); + showToast.info(message ?? "새 알림이 도착했어요."); if (!didPrepend) { queryClient.invalidateQueries({ queryKey: notificationKeys.all }); diff --git a/src/screens/guide/ui/pages/guidebook-page1.tsx b/src/screens/guide/ui/pages/guidebook-page1.tsx index 3e2e72cd..c7240b77 100644 --- a/src/screens/guide/ui/pages/guidebook-page1.tsx +++ b/src/screens/guide/ui/pages/guidebook-page1.tsx @@ -6,38 +6,38 @@ import { KEYWORDS } from "../../model/guide-data"; export function GuidebookPage1() { return ( -
{keyword.description}
++ {keyword.description} +
+
💡 원하는 가격이 되면 즉시 구매할 수 있습니다
- 5단계로 간편하게 경매를 등록하세요 -
++
{steps[currentStep].description}