Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/components/Modal/AlertModalLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,12 @@ export default function AlertModalLayout({
onClick={(e) => e.stopPropagation()}
>
{Icon && <Icon className="w-6 h-6 mb-3.5 mx-auto shrink-0" />}{" "}
<p className="text-gray-900 text-base sm:text-lg mb-[1rem]">{message}</p>
<p
className="text-gray-900 text-base sm:text-lg mb-[1rem]"
style={{ wordBreak: "keep-all" }}
Comment on lines +47 to +48
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

아래와 같이 쓸 수 있습니다!

Suggested change
className="text-gray-900 text-base sm:text-lg mb-[1rem]"
style={{ wordBreak: "keep-all" }}
className="text-gray-900 text-base sm:text-lg mb-[1rem] break-keep"

>
{message}
</p>
<div
className={
type === "message"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/NoticeListPage/CustomNoticeSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function CustomNoticeSection({ customNotices }: CustomNoticeSectionProps) {
imageUrl: shop?.imageUrl ?? "",
address1: shop?.address1 ?? "",
description: notice.description ?? "",
originalHourlyPay: 0,
originalHourlyPay: shop?.originalHourlyPay ?? 0,
hourlyPay: notice.hourlyPay,
startsAt: notice.startsAt,
workhour: notice.workhour,
Expand Down